:root {
    --primary-color: #d4af37; /* Dourado */
    --primary-hover: #b5952f;
    --bg-dark: #050505;
    --bg-card: #151515;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    max-width: 500px; /* Força versão mobile mesmo no computador */
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.5); /* Sombreamento para diferenciar do fundo caso abra no PC */
}

.hidden {
    display: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-bg {
    position: relative;
    width: 100%;
    height: 100vh; /* Trava a altura exatamente no tamanho da tela */
    max-width: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Corta o que sobrar da imagem para não gerar rolagem */
}

.main-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher a tela perfeita sem amassar */
    display: block;
}

/* Texto extra posicionado entre o título e os palestrantes */
.hero-text-overlay {
    position: absolute;
    top: calc(22% + 13px); /* Desceu mais 8 pixels (totalizando 13px) */
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 450px;
    text-align: center;
    z-index: 5;
}

.hero-text-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; /* Reduzido significativamente */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Segundo texto extra posicionado na parte inferior */
.hero-text-overlay-bottom {
    position: absolute;
    bottom: calc(25% + 60px);
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 450px;
    text-align: center;
    z-index: 5;
}

.hero-text-overlay-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem; /* Reduzido significativamente */
    color: var(--primary-color);
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Animação do cursor de digitação */
.cursor {
    display: inline-block;
    animation: blink 0.8s infinite;
    color: var(--primary-color); /* Cursor dourado para dar um charme */
    font-weight: bold;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Posiciona o botão sobre a imagem, perto da base, logo abaixo do "18 de julho" */
.cta-overlay {
    position: absolute;
    bottom: calc(12% + 75px); /* Desceu mais 15px */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 15px;
    z-index: 10;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #d39c59 0%, #f7d59f 30%, #b87e38 50%, #f4cca1 75%, #d19955 100%);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; /* Ajuste cirúrgico para forçar 2 linhas e não vazar */
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 5px; /* Botão mais gordinho, mas com mais espaço útil para a letra */
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(184, 126, 56, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    width: 85%; /* Largura otimizada para o celular */
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(184, 126, 56, 0.6);
    background: linear-gradient(90deg, #f7d59f 0%, #d39c59 30%, #f4cca1 50%, #b87e38 75%, #f7d59f 100%);
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-section p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.lead-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ddd;
}

.form-group input {
    width: 100%;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.social-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap; /* Para quebrar a linha no celular se necessário */
}

.social-text {
    font-size: 1.1rem;
    color: var(--primary-color); /* Em dourado para combinar */
    font-weight: 600;
    margin-right: 5px;
    font-family: var(--font-secondary);
}

.circle-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.circle-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.circle-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.circle-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    color: #fff;
}

.hero-footer {
    position: absolute;
    bottom: 65px; /* Subi mais 20px como solicitado */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero-footer p {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
}

.footer-link {
    color: var(--primary-color); /* Amarelo/Dourado */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Removido as media queries pois a versão base já é mobile-first */
