/* VARIÁVEIS GLOBAIS (Design Tokens) */
:root {
    --cor-primaria: #70b7e3;
    --cor-secundaria: #000000;
    --cor-texto: #333333;
    --cor-fundo-light: #f9f9f9;
    --cor-branco: #ffffff;
    --sombra: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--cor-texto);
    line-height: 1.6;
}

/* HERO SECTION - FUNDO */
.hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-branco);
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: 20px;
    max-width: 800px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0px 0px 0px rgba(0,0,0,0.0);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* COMPONENTES: BOTÕES */
.btn-cta {
    display: inline-block;
    background-color: var(--cor-secundaria);
    color: var(--cor-branco);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cta:hover {
    background-color: var(--cor-primaria);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.full-width {
    width: 100%;
}

/* SEÇÃO DE CAPTURA (FORM) */
.capture-section {
    padding: 80px 20px;
    background-color: var(--cor-fundo-light);
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--cor-primaria);
    font-size: 2rem;
}

/* ESTILOS DO FORMULÁRIO */
.form-wrapper {
    background: var(--cor-branco);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--sombra);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--cor-primaria);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--cor-secundaria);
    outline: none;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.spam-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    text-align: center;
}

/* WHATSAPP FLUTUANTE (CONTÊINER) - SEM FUNDO VERDE */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    
    /* REMOVIDO: background-color: #25d366; */
    /* REMOVIDO: border-radius: 50%; */
    
    width: auto; /* Deixa a largura do link ser definida pela imagem */
    height: auto;
    
    display: flex;
    align-items: center;
    justify-content: center;
    /* A sombra é aplicada diretamente na imagem abaixo */
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ESTILIZA A IMAGEM PNG DENTRO DO BOTÃO */
.whatsapp-float img {
    /* Define o tamanho da imagem PNG */
    width: 60px; 
    height: 60px;
    
    object-fit: contain; 
    
    /* Aplica a sombra apenas na imagem PNG */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* FOOTER */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
}

/* RESPONSIVIDADE (MOBILE) */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .form-wrapper {
        padding: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    /* Ajuste do tamanho da imagem no mobile */
    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
}