/* ==========================================================================
   Estilos Autorais - Landing Page de Investidores SOITO Incorporadora
   ========================================================================== */

/* Custom CSS Variables */
:root {
    --bg-color: #030303;
    --card-bg: #111111;
    --input-bg: #181818;
    --primary: #cbb57d;
    --primary-hover: #bfa86b;
    --primary-rgb: 203, 181, 125;
    
    --text-white: #ffffff;
    --text-light: #f0f3f5;
    --text-muted: #cbcbcb;
    --text-dark: #333333;
    
    --whatsapp-color: #25d366;
    --whatsapp-hover: #20ba5a;
    
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-muted);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typografia Comum */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--text-white);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-color);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.wa-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

/* Seções Gerais */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 15px;
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px auto;
}

/* --- HEADER --- */
.header {
    background-color: rgba(3, 3, 3, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

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

.badge {
    background-color: rgba(var(--primary-rgb), 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 9px;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* --- HERO SECTION --- */
.hero {
    padding: 40px 0 60px 0;
    background: linear-gradient(180deg, rgba(3, 3, 3, 0.82) 0%, rgba(3, 3, 3, 0.96) 100%), 
                url('hero_bg_buildings.png') no-repeat center center / cover;
    position: relative;
    text-align: center;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 850px;
    width: 100%;
}

.tag-superior {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.headline {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.subheadline {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.5;
    max-width: 700px;
}

/* Grid de Informações da Live (Mobile First) */
.live-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 36px;
    text-align: left;
    width: 100%;
}

.info-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.3s ease;
}

.info-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
}

.info-icon {
    font-size: 24px;
    background-color: rgba(255, 255, 255, 0.02);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.info-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.info-desc {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
}

/* Cronômetro */
.countdown-wrapper {
    margin-bottom: 36px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 20px 14px;
    border-radius: 8px;
    max-width: 100%;
}

.countdown-label {
    font-size: 12px;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-white);
}

.time-block label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

.live-alert {
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
}

.cta-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-container .btn {
    max-width: 100%;
}

/* --- DIVISOR DE PALESTRANTES --- */
.speaker-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.2) 50%, transparent);
    margin: 40px 0;
    width: 100%;
}

/* --- SEÇÃO BENEFÍCIOS (WHY SCP) --- */
.why-scp {
    background-color: var(--bg-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 16px;
    background-color: rgba(var(--primary-rgb), 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.benefit-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- SEÇÃO PALESTRANTE --- */
.speaker-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.speaker-image-wrapper {
    display: flex;
    justify-content: center;
}

.speaker-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.speaker-tag {
    color: var(--primary);
    font-size: 11px;
    font-family: var(--font-title);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.speaker-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.speaker-title {
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.speaker-bio {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.6;
    text-align: left;
}

/* --- SEÇÃO REGISTRO / FORMULÁRIO --- */
.registration {
    background-image: radial-gradient(circle at 10% 80%, rgba(var(--primary-rgb), 0.03) 0%, transparent 60%);
}

.registration-container {
    display: flex;
    justify-content: center;
}

.form-wrapper {
    background-color: var(--card-bg);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.form-header {
    text-align: center;
    margin-bottom: 26px;
}

.form-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.form-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.form-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    background-color: var(--input-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 14px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.15);
}

.btn-submit {
    background-color: var(--primary);
    color: var(--bg-color);
    width: 100%;
    margin-top: 10px;
    height: 52px;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
}

.form-terms {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.4;
}

/* Loader */
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--bg-color);
    animation: spin 1s ease-in-out infinite;
}

.hidden {
    display: none !important;
}

/* --- SEÇÃO FAQ --- */
.faq {
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover, .faq-item.active {
    border-color: rgba(var(--primary-rgb), 0.3);
}

.faq-trigger {
    background: none;
    border: none;
    width: 100%;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-white);
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 600;
}

.faq-icon {
    font-size: 18px;
    color: var(--primary);
    font-weight: bold;
    margin-left: 10px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 18px;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 18px 18px 18px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- RODAPÉ --- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    background-color: #010101;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

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

.footer-info {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-links {
    display: flex;
    gap: 20px;
    font-size: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ==========================================================================
   ESTILOS LEGAIS (POLÍTICA E TERMOS)
   ========================================================================== */
.legal-content {
    padding: 40px 0 80px 0;
    background-image: radial-gradient(circle at 50% 10%, rgba(var(--primary-rgb), 0.03) 0%, transparent 40%);
}

.legal-container {
    max-width: 800px;
}

.legal-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.legal-text {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 24px 20px;
    color: var(--text-muted);
}

.legal-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.legal-text h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin: 28px 0 12px 0;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.legal-text ul {
    list-style-type: none;
    padding-left: 15px;
    margin-bottom: 16px;
}

.legal-text ul li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.legal-text ul li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* ==========================================================================
   PÁGINA DE OBRIGADO
   ========================================================================== */
.thank-you {
    padding: 60px 0 80px 0;
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
}

.thank-you-container {
    display: flex;
    justify-content: center;
}

.thank-you-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    border-radius: 12px;
    padding: 40px 20px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.check-icon {
    font-size: 32px;
    color: var(--bg-color);
    background-color: var(--primary);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    font-weight: bold;
}

.thank-you-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.thank-you-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

.whatsapp-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 8px;
    padding: 24px 16px;
    margin-bottom: 30px;
    text-align: left;
}

.whatsapp-box-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.whatsapp-box-desc {
    font-size: 13px;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.5;
}

.whatsapp-box .cta-container {
    justify-content: flex-start;
}

.whatsapp-box .btn-whatsapp {
    max-width: 100%;
}

.actions-links {
    margin-top: 15px;
}

.back-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid transparent;
}

.back-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}


/* ==========================================================================
   MEDIA QUERIES (PROGRESSIVA - RESPONSIVO)
   ========================================================================== */

/* Smartphones Médios/Grandes */
@media (min-width: 480px) {
    .headline {
        font-size: 38px;
    }
}

/* Tablets de Pequeno Porte (ex: 576px) */
@media (min-width: 576px) {
    .container {
        padding: 0 24px;
    }
    
    .live-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    

    
    .form-wrapper {
        padding: 40px 30px;
    }
    
    .legal-text {
        padding: 36px 30px;
    }
}

/* Tablets Comuns (ex: 768px) */
@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .hero {
        padding: 60px 0 80px 0;
    }
    
    .headline {
        font-size: 48px;
    }
    
    .subheadline {
        font-size: 17px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .speaker-grid {
        grid-template-columns: 320px 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .speaker-img {
        max-width: 100%;
    }
    
    .thank-you-card {
        padding: 50px 40px;
    }
}

/* Desktop e Notebooks (ex: 992px) */
@media (min-width: 992px) {
    .logo-img {
        height: 38px;
    }
    
    .badge {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .hero {
        padding: 80px 0 100px 0;
    }
    
    .headline {
        font-size: 56px;
    }
    
    .subheadline {
        font-size: 20px;
    }
    
    .live-info-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    

    
    .countdown-wrapper {
        padding: 24px;
    }
    
    .time-block span {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .speaker-grid {
        grid-template-columns: 380px 1fr;
        gap: 60px;
    }
    
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-logo-img {
        height: 32px;
    }
}
