
        :root {
            --primary-red: #c00000;
            --dark-red: #a00000;
            --text-main: #333333;
            --text-muted: #666666;
            --bg-light: #fdfdfd;
            --border-color: #dddddd;
            --bg-gray: #f5f5f5;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background-color: #ffffff;
            line-height: 1.5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- HEADER & HERO --- */
        header {
            background-image: url('imagens/top_bck.png');
            background-size: 100% auto; /* Faz a imagem ocupar 100% da largura sem cortar */
            background-position: center;
            background-repeat: no-repeat;
            width: 100%;
            max-width: 1250px; /* Respeita o tamanho máximo original da imagem */
            aspect-ratio: 1250 / 116; /* Mantém a proporção exata da sua imagem, tornando-a responsiva */
            margin: 0 auto; /* Centraliza a imagem em telas maiores */
            padding: 0; /* Remove os paddings antigos que causavam distorção */
        }

        .logo-placeholder {
            width: 120px;
            height: auto;
            margin-bottom: 20px;
        }

        .hero-section {
            padding: 40px 0 20px;
            position: relative;
        }

        .badges {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .badge-yellow {
            border: 2px solid #e5b300;
            color: #cc9900;
        }

        .badge-red {
            border: 2px solid var(--primary-red);
            color: var(--primary-red);
        }

        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
        }

        .hero-text h1 {
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .hero-text h1 span {
            color: var(--primary-red);
        }

        .hero-text p {
            font-size: 18px;
            font-weight: 600;
            color: #444;
            margin-bottom: 30px;
        }
.hero-video {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            object-fit: cover; /* Garante que o vídeo não fique distorcido */
        }
/* Garante que imagens, Banners e o Vídeo nunca quebrem a largura da tela */
        .hero-image img,
        .hero-video,
        .bottom-banner img, 
        .footer-socio img {
            width: 100%;
            height: auto;
            max-width: 100%;
            object-fit: contain;
        }
/* --- CONTROLES DO VÍDEO --- */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px; /* Espaço entre os botões */
    z-index: 10;
}

.control-btn {
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.control-btn:hover {
    background-color: var(--primary-red);
}


        .hero-image img {
    max-width: 100%;
    height: auto; /* Garante que a altura se ajuste proporcionalmente se a tela diminuir */
    /* As propriedades border-radius e box-shadow foram removidas para a imagem mesclar perfeitamente com o fundo branco */
}

        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .hero-benefits {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 700;
        }

        .benefit-item i {
            color: var(--primary-red);
            font-size: 20px;
        }

        /* --- FEATURES BAR --- */
        .features-bar {
            background-color: #ffffff;
            margin-bottom: 40px;
            /* As bordas e o padding que ficavam aqui foram movidos para o .container abaixo */
        }

        .features-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            
            /* Bordas agora aplicadas dentro do limite do container (mesma largura da linha de cima) */
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .feature-icon-text {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 700;
        }
        
        .feature-icon-text i {
            color: var(--primary-red);
            font-size: 22px;
        }

        /* --- FORMS COMMON --- */
        .form-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }

        .form-header {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .form-header-icon {
            font-size: 40px;
            color: var(--primary-red);
        }

        .form-header-text h2 {
            font-size: 22px;
            margin-bottom: 5px;
        }

        .form-header-text h2 span {
            color: var(--primary-red);
        }

        .form-header-text p {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .input-group label {
            font-size: 12px;
            font-weight: 700;
        }

        .input-group input, .input-group textarea, .input-group select {
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 14px;
            font-family: inherit;
        }
        
        .input-group input::placeholder, .input-group textarea::placeholder {
            color: #aaaaaa;
        }

        /* Specific grid spans */
        .col-4 { grid-column: span 4; }
        .col-3 { grid-column: span 3; }
        .col-2 { grid-column: span 2; }
        .col-6 { grid-column: span 6; }
        .col-8 { grid-column: span 8; }
        .col-12 { grid-column: span 12; }

        .btn-submit {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 14px 24px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s;
            text-align: center;
            display: inline-block;
            width: 100%;
        }

        .btn-submit:hover {
            background-color: var(--dark-red);
        }

        /* Form 1 specific */
        .checkbox-area {
            display: flex;
            align-items: stretch;
            gap: 20px;
            border-left: 2px solid var(--primary-red);
            padding-left: 20px;
        }

        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .check-item input {
            margin-top: 4px;
        }

        .check-item label {
            font-size: 13px;
            font-weight: 700;
        }

        .check-item span {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: var(--text-muted);
            margin-top: 2px;
        }
        
        .sotio-fundador-text {
            color: var(--primary-red);
        }

        /* Form 2 specific */
        .radio-group-container {
            margin-bottom: 20px;
        }
        
        .radio-group-container > label {
            font-size: 13px;
            font-weight: 700;
            display: block;
            margin-bottom: 8px;
        }

        .radio-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .radio-pills input[type="radio"] {
            display: none;
        }

        .radio-pills label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            color: var(--text-main);
            transition: all 0.2s;
        }
        
        .radio-pills label i {
            color: var(--primary-red);
        }

        .radio-pills input[type="radio"]:checked + label {
            border-color: var(--primary-red);
            background-color: #fff5f5;
            color: var(--primary-red);
        }

        .bottom-action-row {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 20px;
            align-items: flex-end;
        }

        /* --- BOTTOM BANNER --- */
        .bottom-banner {
            margin: 40px 0;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center; /* Centraliza a imagem horizontalmente */
            background: #ffffff; /* Fundo branco para caso a tela seja maior que a imagem */
        }

        .bottom-banner img {
            max-width: 100%;
            height: auto; /* Mantém a proporção da imagem responsiva */
            display: block;
            border-radius: 12px; /* Garante que a imagem siga o arredondamento do contêiner */
        }

        /* --- FOOTER / SOCIO FUNDADOR --- */
        .footer-socio {
            display: flex;
            justify-content: center; /* Centraliza a imagem */
            margin-bottom: 40px;
            width: 100%;
        }

        .footer-socio img {
            max-width: 100%;
            height: auto; /* Mantém a proporção correta em telas menores */
            display: block;
        }

        .btn-vagas {
            background: white;
            color: var(--primary-red);
            font-size: 12px;
            font-weight: 800;
            padding: 6px 16px;
            border-radius: 20px;
            text-transform: uppercase;
        }

        .socio-features {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex: 1;
            padding: 20px;
            background-color: #fafafa;
        }

        .socio-feature-item {
            text-align: center;
            max-width: 120px;
        }
        
        .socio-feature-item i {
            font-size: 30px;
            color: var(--primary-red);
            margin-bottom: 10px;
        }

        .socio-feature-item h4 {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .socio-feature-item p {
            font-size: 11px;
            color: var(--text-muted);
        }
        
        .socio-highlight {
            color: var(--primary-red);
        }

        /* --- RESPONSIVIDADE (MOBILE) --- */
    @media (max-width: 900px) {
        /* Ajuste do Header (mantém a logo visível à esquerda sem espremer a imagem) */
        header {
            aspect-ratio: auto;
            min-height: 110px;
            background-size: cover;
            background-position: left center;
            padding: 10px 0;
        }

        /* Centraliza os textos principais e diminui o tamanho da fonte */
        .hero-content {
            flex-direction: column;
            text-align: center;
        }
        .hero-text h1 {
            font-size: 30px; 
        }
        
        /* Centraliza os badges (tags amarelas/vermelhas) */
        .badges {
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Empilha as listas de benefícios para não espremer o texto */
        .hero-benefits {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            padding-top: 30px;
        }
        .features-bar .container {
            justify-content: center;
            gap: 15px;
        }

        /* Ajuste perfeito dos formulários (1 coluna) */
        .form-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .col-1, .col-2, .col-3, .col-4, .col-6, .col-8, .col-12 {
            grid-column: span 1 !important;
        }
        
        /* Ajuste dos botões de seleção (Casa, Apartamento, etc.) para 2 colunas simétricas */
        .radio-pills {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .radio-pills label {
            flex: 1 1 calc(50% - 10px); /* Ocupa metade da tela menos o espaçamento */
            justify-content: center;
        }

        /* Ajuste das caixinhas de check (Termos e Sócio) */
        .checkbox-area {
            flex-direction: column;
            border-left: none;
            padding-left: 0;
            margin-top: 10px;
            gap: 15px;
        }

        /* Garante que imagens do Mascote e Banners nunca quebrem a largura da tela */
        .hero-image img,
        .bottom-banner img, 
        .footer-socio img {
            width: 100%;
            height: auto;
            max-width: 100%;
            object-fit: contain;
        }
        
        .bottom-action-row {
            grid-template-columns: 1fr;
        }
    }
/* --- EXIT INTENT POPUP --- */
.exit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* Fundo escuro semitransparente */
    z-index: 9999; /* Fica por cima de tudo */
    display: none; /* Escondido por padrão */
    align-items: center;
    justify-content: center;
}

.exit-modal {
    background-color: #ffffff;
    width: 600px;
    height: 600px;
    border-radius: 50%; /* Torna o modal um círculo perfeito */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    text-align: center;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 50px;
    right: 50px;
    background: white;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: 0.2s;
}

.close-btn:hover {
    background: #f0f0f0;
}

.exit-logo {
    width: 60px;
    margin-bottom: 15px;
}

.exit-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.exit-benefits {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    font-size: 14px;
}

.exit-benefits li {
    margin-bottom: 8px;
}

.exit-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    font-family: inherit;
}

.exit-btn {
    border-radius: 6px; /* Para manter o estilo quadrado da sua imagem de referência */
    margin-bottom: 15px;
}

.no-thanks {
    font-size: 12px;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
}

/* Responsividade do Popup para Celulares */
@media (max-width: 768px) {
    .exit-modal {
        width: 90vw;
        height: 90vw; /* Mantém a proporção circular */
        padding: 30px;
    }
    .close-btn {
        top: 20px;
        right: 20px;
    }
    .exit-content h2 {
        font-size: 22px;
    }
    .exit-benefits {
        font-size: 12px;
    }
}