:root{
    --amarelo: rgb(238, 235, 38);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    width: 100%;
    background: #0b1c2c;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h2 {
    color: rgb(243, 243, 243);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00aaff;
}

.menu-mobile {
    display: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop') center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: rgb(238, 235, 38);
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
}

.hero-content strong {
     color: rgb(238, 235, 38);
}

.btn {
    display: inline-block;
    background: #00aaff;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #0088cc;
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0b1c2c;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    font-size:20px;
}

.sobre-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    font-size: 16px;
}

.sobre-box ul {
    margin-top: 20px;
    padding-left: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    margin-bottom: 15px;
    color: #0b1c2c;
}

.seguranca {
    background: #0b1c2c;
    color: white;
}

.seguranca-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.seguranca-lista div {
    margin-bottom: 15px;
    font-size: 18px;
}

.diferencial {
    background: linear-gradient(135deg, #00aaff, #0b1c2c);
    color: white;
    text-align: center;
}

.diferencial h2 {
    margin-bottom: 20px;
    font-size: 38px;
}

.diferencial h3 {
    margin-bottom: 20px;
}

.diferencial p{
    margin-bottom: 35px;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.info-contato {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.info-contato h3 {
    text-align: center;
    margin-bottom:40px;
}


.info-contato p {
    margin-bottom: 15px;
}

footer {
    background: #0b1c2c;
    color: white;
    text-align: center;
    padding: 25px 0;
}

@media(max-width: 900px) {

    nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0b1c2c;
        padding: 20px 0;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .menu-mobile {
        display: block;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .sobre-content,
    .seguranca-content,
    .contato-content {
        grid-template-columns: 1fr;
    }
}