/* RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* HEADER */
.header {
    padding: 20px 0;
    border-bottom: 2px solid #d4af37;
    text-align: center;
    background-color: #0b0b0b;
}

.logo-img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
}

/* DOBRA SUPERIOR */
.main-content {
    padding: 40px 0;
    background: linear-gradient(135deg, #0b0b0b 0%, #1c1c1c 100%);
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* TEXTOS HERO */
.hero-text h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text strong {
    color: #d4af37;
}

.features-list {
    margin-top: 20px;
}

.feature-item {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* CARD DE CAPTURA BRANCO */
.hero-card {
    background-color: #ffffff;
    color: #333;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.hero-card h3 {
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #444;
}

.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group select:focus {
    border-color: #d4af37;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s ease;
}

.btn-whatsapp:active {
    transform: scale(0.98);
}

/* SEÇÃO COMO FUNCIONA */
.como-funciona-section {
    background-color: #f9f9f9;
    color: #222;
    padding: 70px 0;
    text-align: center;
}

.como-funciona-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.como-funciona-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 45px;
    padding: 0 10px;
}

.cards-funciona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-funciona {
    background-color: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border-top: 4px solid #d4af37;
    transition: transform 0.3s ease;
}

.card-funciona .icon-box {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card-funciona h4 {
    font-size: 1.25rem;
    color: #111;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-funciona p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    padding: 25px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    background-color: #0b0b0b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* =======================================
   OTIMIZAÇÃO COMPLETA PARA CELULAR (MOBILE)
   ======================================= */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .logo-img {
        max-height: 110px; /* Reduzido levemente para dar mais espaço de tela ativa */
    }

    .main-content {
        padding: 25px 0 40px 0;
    }

    .grid-layout {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .features-list {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .feature-item {
        font-size: 1rem;
    }

    /* Ajustes refinados do Card no Mobile */
    .hero-card {
        padding: 25px 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .hero-card h3 {
        font-size: 1.4rem;
    }

    /* Ajustes da Seção Como Funciona no Mobile */
    .como-funciona-section {
        padding: 50px 0;
    }

    .como-funciona-section h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .como-funciona-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cards-funciona-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5px;
    }

    .card-funciona {
        padding: 30px 20px;
    }
}