* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
}

html,
body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

:root {
    --porto-blue: #0046BE;
    --porto-blue-light: #0066FF;
    --porto-cyan: #00C2FF;
    --text-dark: #1A1A1A;
    --text-gray: #4A5568;
    --text-light: #718096;
    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --green: #10B981;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

/* ========================================
   FAIXA BRANCA SEPARADA (TOP BAR)
   ======================================== */

.top-bar {
    background: #FFFFFF;
    padding: 0.75rem 0;
    border-bottom: 2px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo dentro da faixa branca */
.top-bar .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--porto-blue);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
}

.top-bar .logo img {
    height: 60px;
    width: auto;
}

.top-bar .logo-text {
    display: flex;
    flex-direction: column;
}

.top-bar .logo-porto {
    color: var(--porto-blue);
    font-weight: 900;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .top-bar {
        background: #FFFFFF;
        padding: 0.5rem 0;
        border-bottom: 2px solid #e5e7eb;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .top-bar .logo img {
        height: 75px !important; /* Aumentado de 60px para 75px */
    }

}


/* Hero com Header integrado */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
        url('backg.png') center 45%/cover;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 0;
}

/* Ajuste do hero-content para compensar a remoção do header */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 2rem 3rem;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}


/* Ajuste específico para desktop - mostra a família completa */
@media (min-width: 769px) {
    .hero-section {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
            url('backg.png') center 45%/cover;
        background-attachment: scroll;
    }
}

/* Mobile - mantém família completa visível */
@media (max-width: 768px) {
    .hero-section {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
            url('backg.png') center 45%/cover;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo img {
    height: 70px;
    width: auto;
}


.header-whatsapp {
    width: auto;
    height: 36px;
    padding: 0 0.85rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.header-whatsapp svg {
    width: 22px;
    height: 22px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.whatsapp-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.header-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.header-whatsapp:active {
    transform: translateY(0);
}

.header-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: rgba(37, 211, 102, 0.3);
    animation: header-whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes header-whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}


/* Mobile - WhatsApp DENTRO da hero section, abaixo do badge */
@media (max-width: 768px) {
    /* Remove WhatsApp da navbar no mobile */
    .top-bar .header-whatsapp {
        display: none !important;
    }

    /* WhatsApp dentro da hero, logo abaixo do badge */
    .hero-section .header-whatsapp {
        display: flex !important;
        height: 36px;
        padding: 0 0.85rem;
        margin-top: 0.75rem;
        position: static;
    }

    .hero-section .header-whatsapp svg {
        width: 18px;
        height: 18px;
    }

    .hero-section .whatsapp-label {
        font-size: 0.8rem;
    }
}



/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 2rem 2rem 3rem;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ajuste para mobile - badge no topo, conteúdo embaixo */
@media (max-width: 768px) {
    .hero-content {
        justify-content: flex-start;
        padding: 1rem 1.5rem 2rem;
    }
}



.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    margin-bottom: 4rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}


/* Badge no mobile - fica no topo */
@media (max-width: 768px) {
    .hero-badge {
        padding: 0.75rem 1.8rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        margin-bottom: auto;
        margin-top: 1rem;
        max-width: 88%;
        text-align: center;
        line-height: 1.3;
        white-space: nowrap;
    }
}

/* iPhone 12 e similares (390px x 844px) */
@media (max-width: 390px) and (min-height: 800px) {
    .hero-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.65rem;
        letter-spacing: 0.2px;
        margin-top: 1rem;
        max-width: 85%;
        gap: 0.5rem;
    }
}


/* iPhone 14 Pro Max (430px x 932px) */
@media (min-width: 391px) and (max-width: 430px) and (min-height: 900px) {
    .hero-badge {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 0.6px;
        margin-top: 1rem;
        max-width: 85%;
    }
}

/* Wrapper para agrupar título, subtítulo e botão no final da tela */
.hero-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-main-content {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
}






.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 3rem;
    max-width: 1100px;
    letter-spacing: -1.5px;
    color: #ffffff;
    text-shadow:
        0 0 40px rgba(255, 255, 255, 0.3),
        0 4px 30px rgba(0, 0, 0, 0.5),
        0 2px 15px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

/* Ajuste do título para mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
}


.hero h1 strong {
    font-weight: 900;
    text-shadow:
        0 0 30px currentColor,
        0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 .highlight {
    color: #FFD700;
    text-shadow:
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.4),
        0 4px 20px rgba(255, 165, 0, 0.6);
    filter: brightness(1.3) saturate(1.2);
    font-weight: 900;
    display: inline-block;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: brightness(1.3) saturate(1.2);
    }

    to {
        filter: brightness(1.5) saturate(1.4);
    }
}

.hero p {
    font-size: 2.1rem;
    margin-bottom: 4rem;
    max-width: 900px;
    line-height: 2;
    font-weight: 600;
    color: #ffffff;
    text-shadow:
        0 3px 20px rgba(0, 0, 0, 0.4),
        0 1px 8px rgba(0, 0, 0, 0.3);
    filter: brightness(1.05);
}

@media (max-width: 768px) {
    .hero p {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
}


.hero p .destaque {
    font-weight: 700;
    color: #FFE082;
    text-shadow: 0 2px 15px rgba(255, 224, 130, 0.6);
    border-bottom: 2px solid rgba(255, 224, 130, 0.5);
    padding-bottom: 2px;
}

.hero p .destaque-fgts {
    font-weight: 800;
    color: #4FC3F7;
    text-shadow: 0 0 20px rgba(79, 195, 247, 0.6);
    background: rgba(79, 195, 247, 0.15);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(79, 195, 247, 0.3);
}

.hero-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    color: var(--porto-blue);
    padding: 1.1rem 2.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 3px 10px rgba(0, 70, 190, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    transition: left 0.5s;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 70, 190, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 3px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    border-color: rgba(255, 255, 255, 1);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:active {
    transform: translateY(-2px) scale(1.02);
}

/* Stats */
.stats {
    background: #f8f9fa;
    padding: 3rem 2rem;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

/* Ocultar stats no mobile */
@media (max-width: 768px) {
    .stats {
        display: none;
    }
}



/* Ocultar stats no mobile */
@media (max-width: 768px) {
    .stats {
        display: none;
    }
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 70, 190, 0.15);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0046BE 0%, #4FC3F7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 70, 190, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 70, 190, 0.3);
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--porto-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Section */
.section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}


/* Background off-white para primeira seção após hero */
.section:first-of-type {
    background: #f8f9fa;
}



/* Reduz padding superior da primeira seção no mobile */
@media (max-width: 768px) {
    .section:first-of-type {
        padding-top: 2rem;
    }
}


@media (min-width: 769px) {
    .section {
        padding: 3.5rem 2rem;
    }
}


@media (max-width: 768px) {
    .section {
        padding: 2rem 0.5rem;
        max-width: 100vw;
        width: 100%;
        overflow-x: hidden !important;
    }
}


.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.35rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
}

/* Benefits */
.benefit-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    padding: 0 2rem;
    justify-items: center;
    align-items: stretch;
}

@media (max-width: 768px) {
    .benefit-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
    max-width: 450px;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .benefit-item {
        gap: 1rem;
        align-items: flex-start;
        text-align: left;
    }

    .benefit-item:hover {
        transform: none;
    }
}

.benefit-item::before {
    display: none;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, #0046BE 0%, #4FC3F7 100%);
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 70, 190, 0.2);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    box-shadow: 0 12px 30px rgba(0, 70, 190, 0.3);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .benefit-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        background: var(--porto-blue);
        border: none;
        border-radius: 12px;
        box-shadow: none;
    }

    .benefit-item:hover .benefit-icon {
        transform: none;
        box-shadow: none;
    }
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .benefit-icon svg {
        width: 24px;
        height: 24px;
        color: white;
    }
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .benefit-content {
        gap: 0;
    }
}

.benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 768px) {
    .benefit-item h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--porto-blue);
    }
}

.benefit-item p {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .benefit-item p {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
}

/* Modal Simulação */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, #0046BE 0%, #4FC3F7 100%);
    padding: 2rem;
    border-radius: 24px 24px 0 0;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-header h2 {
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: #EF4444;
    margin-left: 0.25rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--porto-blue);
    box-shadow: 0 0 0 3px rgba(0, 70, 190, 0.1);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #0046BE 0%, #4FC3F7 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 70, 190, 0.3);
    margin-top: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 70, 190, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.form-footer p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* Animação de scroll suave para o modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--porto-blue);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--porto-blue-light);
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 100%;
        border-radius: 16px;
    }

    .modal-header {
        padding: 1.5rem;
        border-radius: 16px 16px 0 0;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }
}

/* Video Section */
.video-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.video-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0046BE 0%, #4FC3F7 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
}

.video-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
}

.video-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-subtitle {
        font-size: 1.2rem;
    }
}

.video-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.video-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.video-benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 70, 190, 0.15);
}

.video-benefit-item svg {
    width: 24px;
    height: 24px;
    color: #0046BE;
    flex-shrink: 0;
}

.video-benefit-item span {
    font-weight: 600;
    color: #1a1a1a;
}

.video-player-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-play-btn svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.video-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.video-stat {
    text-align: center;
}

.video-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0046BE;
    margin-bottom: 0.25rem;
}

.video-stat span {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Video */
@media (max-width: 968px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .video-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .video-section {
        padding: 3rem 1.5rem;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }
}

/* Comparison - OTIMIZADO PARA MOBILE */
.comparison-box {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 1rem 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
    .comparison-box {
        padding: 3rem;
        border-radius: 24px;
    }

    .comparison-grid {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
}

.comparison-item {
    background: white;
    padding: 1rem 0.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    min-width: 0;
}

@media (min-width: 769px) {
    .comparison-item {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
}

.comparison-winner {
    border-color: rgba(16, 185, 129, 0.3);
}

.comparison-winner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981 0%, #34D399 100%);
    border-radius: 16px 16px 0 0;
}

.comparison-loser {
    border-color: rgba(239, 68, 68, 0.2);
}

.comparison-loser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EF4444 0%, #F87171 100%);
    border-radius: 16px 16px 0 0;
}

.comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

@media (min-width: 769px) {
    .comparison-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

.comparison-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .comparison-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}

.comparison-icon.winner {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    color: white;
}

.comparison-icon.loser {
    background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
    color: white;
}

.comparison-icon svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 769px) {
    .comparison-icon svg {
        width: 24px;
        height: 24px;
    }
}

.comparison-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    word-break: break-word;
}

@media (min-width: 769px) {
    .comparison-item h4 {
        font-size: 1.4rem;
    }
}

.comparison-value {
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-height: 3rem;
}

.comparison-value .currency {
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.85;
    line-height: 1;
    display: block;
}

.comparison-value .amount {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.1;
    display: block;
}

/* Garantir que valores sem estrutura também funcionem */
.winner-value {
    color: #10B981;
}

.loser-value {
    color: #EF4444;
}

@media (min-width: 769px) {
    .comparison-value {
        margin-bottom: 2rem;
        gap: 0.35rem;
        min-height: 4rem;
    }

    .comparison-value .currency {
        font-size: 1.1rem;
    }

    .comparison-value .amount {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
}

.winner-value {
    color: #10B981;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
}

.loser-value {
    color: #EF4444;
    text-shadow: 0 2px 10px rgba(239, 68, 68, 0.2);
}


.comparison-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.8rem;
}

.comparison-features li span {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Destaque SUAVE nos textos das características */
.comparison-features li span:last-child {
    font-weight: 600;
    font-size: 0.9rem;
}

@media (min-width: 769px) {
    .comparison-features li span:last-child {
        font-size: 1.05rem;
        font-weight: 600;
    }
}


@media (min-width: 769px) {
    .comparison-features li {
        padding: 1rem 0;
        gap: 1rem;
        font-size: 1.05rem;
    }
}

.comparison-features li:last-child {
    border-bottom: none;
}



.check-icon {
    color: #10B981;
    font-weight: bold;
    font-size: 1.1rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .check-icon {
        font-size: 1.5rem;
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }
}

.x-icon {
    color: #EF4444;
    font-weight: bold;
    font-size: 1.1rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 4px;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .x-icon {
        font-size: 1.5rem;
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }
}

.economy-badge {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    color: white;
    padding: 1rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.4s ease;
}

@media (min-width: 769px) {
    .economy-badge {
        padding: 1.25rem 1.5rem;
        border-radius: 14px;
        gap: 0.35rem;
    }
}

.economy-badge:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.economy-icon {
    display: none;
}

.economy-badge h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    line-height: 1.2;
}

@media (min-width: 769px) {
    .economy-badge h3 {
        font-size: 1.5rem;
    }
}

.economy-badge p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
    line-height: 1.3;
}

@media (min-width: 769px) {
    .economy-badge p {
        font-size: 1rem;
    }
}

/* Secondary CTA */
.secondary-cta {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.secondary-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 30px rgba(0, 70, 190, 0.1);
    border: 2px solid rgba(0, 70, 190, 0.1);
    transition: all 0.3s ease;
}

.secondary-cta-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 70, 190, 0.15);
    border-color: rgba(0, 70, 190, 0.2);
}

.secondary-cta-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.secondary-cta-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0046BE 0%, #4FC3F7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 70, 190, 0.25);
}

.secondary-cta-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.secondary-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.secondary-cta-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0046BE 0%, #4FC3F7 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 70, 190, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 70, 190, 0.4);
}

.btn-secondary:hover svg {
    transform: translateX(3px);
}

/* Responsive Secondary CTA */
@media (max-width: 768px) {
    .secondary-cta {
        padding: 2rem 1rem;
    }

    .secondary-cta-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .secondary-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .secondary-cta-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .secondary-cta-icon svg {
        width: 28px;
        height: 28px;
    }

    .secondary-cta-text h3 {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }

    .secondary-cta-text p {
        font-size: 0.9rem;
    }

    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--porto-blue);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--porto-blue);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--porto-blue);
    transition: transform 0.3s;
    font-weight: bold;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--porto-blue), var(--porto-blue-light));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1.5rem;
        margin-top: 2rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .cta-section p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
}

.btn-white {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    color: var(--porto-blue);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 3px 10px rgba(0, 70, 190, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    transition: left 0.5s;
}

.btn-white:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35),
        0 8px 20px rgba(0, 70, 190, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 3px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    border-color: rgba(255, 255, 255, 1);
}

.btn-white:hover::before {
    left: 100%;
}

.btn-white:active {
    transform: translateY(-2px) scale(1.02);
}

/* Representative Badge */
.representative-badge {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(0, 70, 190, 0.1);
}

.representative-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 70, 190, 0.1);
}

.representative-seal {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 2rem;
    border-right: 2px solid rgba(0, 70, 190, 0.1);
}

.representative-seal svg {
    width: 60px;
    height: 60px;
    color: #FFD700;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.representative-seal-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.seal-badge {
    background: linear-gradient(135deg, #0046BE 0%, #4FC3F7 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seal-verified {
    color: #10B981;
    font-size: 0.85rem;
    font-weight: 600;
}

.representative-info {
    flex: 1;
}

.representative-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0046BE;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.representative-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.representative-cnpj {
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 0.5rem;
    font-family: 'Courier New', monospace;
}

.representative-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 2rem;
    border-left: 2px solid rgba(0, 70, 190, 0.1);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: #e8f4f8;
    transform: scale(1.05);
}

.partner-logo img {
    height: 50px;
    width: auto;
    filter: grayscale(0);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Responsive Representative */
@media (max-width: 968px) {
    .representative-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .representative-seal {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid rgba(0, 70, 190, 0.1);
        padding-bottom: 1.5rem;
        justify-content: center;
    }

    .representative-logos {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(0, 70, 190, 0.1);
        padding-top: 1.5rem;
        justify-content: center;
    }

    .representative-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .representative-badge {
        padding: 2rem 1rem;
    }

    .representative-container {
        padding: 1.5rem 1rem;
    }

    .representative-seal svg {
        width: 48px;
        height: 48px;
    }

    .representative-info h3 {
        font-size: 1.1rem;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    position: relative;
    z-index: 10;
}

.footer::after {
    content: '';
    display: block;
    clear: both;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

/* Logo no Header */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Logo maior e mais à esquerda APENAS NO DESKTOP */
@media (min-width: 769px) {
    .header-content {
        padding: 0 1rem 0 3rem;
    }

    .logo img {
        height: 70px;
        width: auto;
    }
}


/* Logo no Footer */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .logo {
        font-size: 1.4rem;
        gap: 0.5rem;
    }

    .logo img {
        height: 75px; /* Aumentado de 65px para 75px */
    }


    .footer-logo {
        font-size: 1.25rem;
        gap: 0.5rem;
    }

    .footer-logo img {
        height: 40px;
    }
}


.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #4FC3F7;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: #4FC3F7;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}


.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Animação de pulso */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsivo WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-text {
        display: none;
    }
}

/* Fix simples para remover espaço branco no final */
html,
body {
    margin: 0;
    padding: 0;
}

.footer {
    margin-bottom: 0;
}

/* FIX DEFINITIVO - Faixa branca com seta do WhatsApp */
body {
    position: relative;
    overflow-x: hidden;
}

/* Esconder qualquer elemento que esteja "vazando" */
body>*:last-child:not(.whatsapp-float):not(.modal-overlay):not(script) {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Garantir que WhatsApp fique fixo e não cause scroll */
.whatsapp-float {
    position: fixed !important;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.whatsapp-float svg {
    flex-shrink: 0;
}

/* Modal também fixo */
.modal-overlay {
    position: fixed !important;
    inset: 0;
}

/* ========================================
   AJUSTES NAVBAR - APENAS DESKTOP
   ======================================== */

/* Desktop: Navbar FINA com logo GRANDE e bem centralizado */
@media (min-width: 769px) {
    .top-bar {
        padding: 0.2rem 0;
    }

    .top-bar-content {
        max-width: 1400px;
        padding: 0 1.5rem 0 3rem;
        margin: 0 0 0 0;
        align-items: center;
    }

    .top-bar .logo {
        display: flex;
        align-items: center;
    }

    .top-bar .logo img {
        height: 85px;
        width: auto;
    }

    /* Aumenta proporcionalmente o botão do WhatsApp */
    .header-whatsapp {
        height: 42px;
        padding: 0 1.2rem;
    }

    .header-whatsapp svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-label {
        font-size: 1.05rem;
    }
}

/* Desktop grande: Logo ainda maior, navbar continua fina */
@media (min-width: 1200px) {
    .top-bar {
        padding: 0.2rem 0;
    }

    .top-bar .logo img {
        height: 95px;
    }

    .top-bar-content {
        padding: 0 2rem 0 4rem;
    }

    /* Ajuste extra para telas grandes - família completa visível */
    .hero-section {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
            url('backg.png') center 45%/cover !important;
    }
}


/* ========================================
   FIX HERO - APENAS DESKTOP (PC)
   ======================================== */

/* MOBILE: Mantém tudo como estava ORIGINALMENTE */
@media (max-width: 768px) {
    /* Esconde os botões do desktop no mobile */
    .hero-buttons {
        display: none !important;
    }

    /* Mostra o botão original do hero no mobile */
    .hero-main-content .hero-cta {
        display: inline-flex !important;
    }

    /* WhatsApp flutuante menor no mobile */
    .whatsapp-float {
        width: 56px !important;
        height: 56px !important;
        bottom: 1.5rem !important;
        right: 1.5rem !important;
    }

    .whatsapp-float svg {
        width: 28px !important;
        height: 28px !important;
    }
}

/* DESKTOP: Botões à direita, ao lado da família */
@media (min-width: 769px) {
    /* Remove WhatsApp da navbar no desktop */
    .header-whatsapp {
        display: none !important;
    }

    /* Hero section com position relative */
    .hero-section {
        position: relative;
    }

    /* ESCONDE o botão "SIMULE AGORA" original do hero-main-content no desktop */
    .hero-main-content .hero-cta {
        display: none !important;
    }

    /* Container dos botões - DIREITA da tela */
    .hero-buttons {
        position: absolute !important;
        right: 4rem;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        z-index: 10;
    }

    /* Botão "SIMULE AGORA" - azul */
    .hero-buttons .hero-cta {
        display: inline-flex !important;
        background: linear-gradient(135deg, #0046BE 0%, #4FC3F7 100%);
        color: white;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
        width: 240px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(0, 70, 190, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.3);
        text-decoration: none;
        text-align: center;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        margin: 0;
    }

    .hero-buttons .hero-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0, 70, 190, 0.6);
    }

    /* Botão WhatsApp - verde */
    .hero-whatsapp {
        display: flex !important;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        color: white;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.3);
        width: 240px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .hero-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }

    .hero-whatsapp svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
}

/* Desktop grande - botões mais à direita */
@media (min-width: 1200px) {
    .hero-buttons {
        right: 6rem !important;
    }
}

/* Desktop médio - botões mais próximos da borda */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-buttons {
        right: 2rem !important;
    }

    .hero-buttons .hero-cta,
    .hero-whatsapp {
        width: 200px !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* ========================================
   FIX HERO - AJUSTE DE ALTURA PERFEITO
   ======================================== */

/* Mobile: Hero cabe perfeitamente na tela */
@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 70px) !important;
        min-height: calc(100vh - 70px) !important;
        max-height: calc(100vh - 70px) !important;
    }

    .hero-content {
        padding: 1rem 1.5rem 2rem !important;
    }

    .hero-badge {
        margin-top: 0.5rem !important;
        margin-bottom: 0 !important;
        padding: 0.6rem 1.5rem !important;
        font-size: 0.75rem !important;
    }

    .hero-main-content {
        margin-top: auto !important;
        margin-bottom: 1rem !important;
        gap: 0.75rem !important;
    }

    .hero h1 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }

    .hero p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
    }

    .hero-cta {
        padding: 0.85rem 1.75rem !important;
        font-size: 0.95rem !important;
        margin-top: 0.5rem !important;
    }
}

/* Desktop: Hero cabe perfeitamente na tela */
@media (min-width: 769px) {
    .hero-section {
        height: calc(100vh - 100px) !important;
        min-height: calc(100vh - 100px) !important;
        max-height: calc(100vh - 100px) !important;
    }

    .hero-content {
        padding: 1.5rem 2rem 2.5rem !important;
        justify-content: center !important;
    }

    .hero-badge {
        padding: 0.85rem 2rem !important;
        margin-bottom: 2.5rem !important;
        font-size: 0.9rem !important;
    }

    .hero-main-content {
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero h1 {
        font-size: 4rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.15 !important;
    }

    .hero p {
        font-size: 1.6rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.6 !important;
    }

    /* Botões à direita */
    .hero-buttons {
        position: absolute !important;
        right: 4rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .hero-buttons .hero-cta,
    .hero-whatsapp {
        padding: 0.9rem 1.8rem !important;
        font-size: 0.95rem !important;
    }
}

/* Desktop grande: ajustes proporcionais */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 4.5rem !important;
    }

    .hero p {
        font-size: 1.8rem !important;
    }
}

/* Telas com altura baixa: ajustes extras */
@media (min-width: 769px) and (max-height: 800px) {
    .hero h1 {
        font-size: 3.5rem !important;
        margin-bottom: 1.25rem !important;
    }

    .hero p {
        font-size: 1.4rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-badge {
        margin-bottom: 2rem !important;
        padding: 0.75rem 1.75rem !important;
    }
}

/* iPhone específico */
@media (max-width: 390px) and (min-height: 800px) {
    .hero h1 {
        font-size: 1.5rem !important;
    }

    .hero p {
        font-size: 0.9rem !important;
    }

    .hero-badge {
        font-size: 0.7rem !important;
        padding: 0.55rem 1.3rem !important;
    }
}


/* ========================================
   HERO - POSICIONAR CONTEÚDO NA ALTURA DO CORPO (APENAS DESKTOP)
   ======================================== */

@media (min-width: 769px) {
    .hero-content {
        justify-content: flex-start !important;
        padding-top: 2rem !important;
    }

    .hero-badge {
        margin-top: 1rem !important;
        margin-bottom: 18rem !important;
    }

    .hero-main-content {
        margin-top: 0 !important;
        margin-bottom: auto !important;
    }
}

/* Telas grandes - ajuste proporcional */
@media (min-width: 1200px) {
    .hero-badge {
        margin-bottom: 20rem !important;
    }
}

/* Telas com altura baixa - menos espaço */
@media (min-width: 769px) and (max-height: 800px) {
    .hero-badge {
        margin-bottom: 14rem !important;
    }
}

/* ========================================
   HERO - AJUSTE BADGE (APENAS DESKTOP)
   ======================================== */

@media (min-width: 769px) {
    .hero-content {
        padding-top: 1rem !important;
    }

    .hero-badge {
        margin-top: 0.5rem !important;
        margin-bottom: 18rem !important;
    }
}

/* Telas grandes */
@media (min-width: 1200px) {
    .hero-content {
        padding-top: 1.25rem !important;
    }

    .hero-badge {
        margin-top: 0.75rem !important;
        margin-bottom: 20rem !important;
    }
}

/* Telas com altura baixa */
@media (min-width: 769px) and (max-height: 800px) {
    .hero-content {
        padding-top: 0.75rem !important;
    }

    .hero-badge {
        margin-top: 0.35rem !important;
        margin-bottom: 14rem !important;
    }
}

/* ========================================
   COMPACTAÇÃO DE ESPAÇOS - TODAS AS SEÇÕES
   ======================================== */

/* Reduz padding geral das sections */
.section {
    padding: 2rem 1rem !important;
}

@media (min-width: 769px) {
    .section {
        padding: 2.5rem 2rem !important;
    }
}

/* Remove espaços extras do título e subtítulo */
.section-title {
    margin-bottom: 0.75rem !important;
}

.section-subtitle {
    margin-bottom: 1.5rem !important;
}

@media (min-width: 769px) {
    .section-subtitle {
        margin-bottom: 2rem !important;
    }
}

/* Compacta o comparison box */
.comparison-box {
    padding: 1.5rem 1rem !important;
}

@media (min-width: 769px) {
    .comparison-box {
        padding: 2.5rem 2.5rem !important;
    }
}

.comparison-box .section-subtitle {
    margin-bottom: 1.5rem !important;
}

@media (min-width: 769px) {
    .comparison-box .section-subtitle {
        margin-bottom: 2rem !important;
    }
}

/* Video Section compacta */
.video-section {
    padding: 3rem 2rem !important;
}

@media (max-width: 640px) {
    .video-section {
        padding: 2rem 1.5rem !important;
    }
}

/* Secondary CTA compacta */
.secondary-cta {
    padding: 2rem 2rem !important;
}

@media (max-width: 768px) {
    .secondary-cta {
        padding: 1.5rem 1rem !important;
    }
}

/* CTA Section compacta */
.cta-section {
    padding: 3rem 2rem !important;
    margin-top: 2rem !important;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 2rem 1.5rem !important;
        margin-top: 1.5rem !important;
    }
}

/* Representative Badge compacta */
.representative-badge {
    padding: 2rem 2rem !important;
}

/* Footer compacta */
.footer-content {
    padding: 3rem 2rem 1.5rem !important;
}

.footer-grid {
    margin-bottom: 2rem !important;
}

/* Benefit list - reduz gap */
.benefit-list {
    gap: 2rem 3rem !important;
}

@media (max-width: 768px) {
    .benefit-list {
        gap: 1.5rem !important;
    }
}

/* Vídeo HTML5 - Estilo */
.video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Controles do vídeo */
.video-player video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.video-player video::-webkit-media-controls-play-button,
.video-player video::-webkit-media-controls-current-time-display,
.video-player video::-webkit-media-controls-time-remaining-display {
    color: white;
}

/* ========================================
   FIX EXTRA - GARANTIR FAMÍLIA COMPLETA VISÍVEL
   ======================================== */

/* Laptops médios */
@media (min-width: 769px) and (max-width: 1199px) {
    .hero-section {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
            url('backg.png') center 45%/cover !important;
    }
}

/* Monitores ultrawide e 4K */
@media (min-width: 1920px) {
    .hero-section {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
            url('backg.png') center 45%/cover !important;
    }
}

/* Telas com altura menor (notebooks em landscape) */
@media (min-width: 769px) and (max-height: 700px) {
    .hero-section {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
            url('backg.png') center 45%/cover !important;
    }
}

/* Mobile landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
            url('backg.png') center 45%/cover !important;
    }
}