/* ==========================================================================
   LANDING PAGE ATEVALDO LEITÃO - STYLESHEET
   Design System, Cores, Tipografia, Layout Responsivo & Componentes
   ========================================================================== */

/* 1. VARIÁVEIS DO DESIGN SYSTEM */
:root {
    --color-primary: #0754B8;        /* Azul Royal */
    --color-primary-dark: #063B82;   /* Azul Escuro da Marca */
    --color-yellow: #FFD000;         /* Amarelo de Destaque */
    --color-yellow-hover: #E6BB00;
    --color-bg-light: #F5F7FA;       /* Fundo Claro Seções */
    --color-white: #FFFFFF;
    --color-dark-text: #1A202C;
    --color-muted-text: #4A5568;
    --color-border: #E2E8F0;
    
    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Sombras & Transições */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(6, 59, 130, 0.08);
    --shadow-lg: 0 10px 25px rgba(6, 59, 130, 0.12);
    --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.09);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* 2. RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark-text);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-yellow { color: var(--color-yellow); }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 2.5rem; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* 3. HEADER (CABEÇALHO FIXO) */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 180px;
    height: auto;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    letter-spacing: 0.5px;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-yellow);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-whatsapp-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.btn-whatsapp-header:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.icon-whatsapp {
    width: 18px;
    height: 18px;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* 4. HERO SECTION */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #052F68 0%, #063B82 45%, #0754B8 100%);
    color: var(--color-white);
    padding-top: 50px;
    padding-bottom: 70px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-photo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.photo-container {
    position: relative;
    max-width: 440px;
    width: 100%;
    border-radius: 500px 500px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 6px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-cargo {
    display: inline-block;
    color: var(--color-yellow);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.hero-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-name .first-name {
    display: block;
    color: var(--color-white);
}

.hero-name .last-name {
    display: block;
    color: var(--color-yellow);
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 520px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.hero-quote-badge {
    background: rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--color-yellow);
    padding: 8px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-yellow);
    margin-bottom: 25px;
}

.candidatura-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.numero-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 2px solid var(--color-border);
    padding-right: 20px;
}

.numero-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--color-muted-text);
    letter-spacing: 1px;
}

.numero-valor {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.2rem;
    color: var(--color-primary-dark);
    line-height: 1;
}

.partido-box {
    display: flex;
    align-items: center;
}

.psd-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.8rem;
    color: #0754B8;
    text-transform: lowercase;
    line-height: 1;
    letter-spacing: -2px;
}

.psd-desc {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-muted-text);
    max-width: 110px;
    line-height: 1.1;
    margin-top: 2px;
}

.hero-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

/* 5. SEÇÃO "EU QUERO FALAR COM VOCÊ" */
.section-falar {
    padding: 80px 0 100px;
    background-color: var(--color-bg-light);
}

.falar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.falar-bio-preview {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-badge-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.section-badge-icon svg {
    width: 24px;
    height: 24px;
}

.section-title-sm {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-title-sm .sub {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-muted-text);
    letter-spacing: 1px;
}

.section-title-sm .main {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-primary-dark);
}

.bio-excerpt {
    font-size: 1.05rem;
    color: var(--color-muted-text);
    margin-bottom: 15px;
}

.bio-highlight {
    font-weight: 700;
    color: var(--color-primary-dark);
    font-size: 1.1rem;
    margin: 10px 0 25px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    border: 2px solid var(--color-primary-dark);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary svg {
    width: 16px;
    height: 16px;
}

/* Card de Formulário Elevado */
.falar-form-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.card-header h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    color: var(--color-primary-dark);
    line-height: 1.1;
    margin-bottom: 8px;
}

.form-sub-desc {
    font-size: 0.9rem;
    color: var(--color-muted-text);
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: var(--color-muted-text);
    pointer-events: none;
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper .input-icon {
    top: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form-dark input,
.contact-form-dark textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: #F8FAFC;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-dark-text);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(7, 84, 184, 0.1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border: none;
    padding: 16px 30px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-block {
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-feedback {
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.form-feedback.success { color: #10B981; }
.form-feedback.error { color: #EF4444; }

/* 6. SEÇÃO PROPOSTAS */
.section-propostas {
    padding: 90px 0;
    background-color: var(--color-white);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-muted-text);
    margin-bottom: 8px;
}

.title-underline {
    width: 70px;
    height: 4px;
    background-color: var(--color-yellow);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.propostas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.proposta-card {
    background-color: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proposta-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.proposta-icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.proposta-card:hover .proposta-icon-box {
    background-color: var(--color-yellow);
    color: var(--color-primary-dark);
}

.proposta-icon-box svg {
    width: 30px;
    height: 30px;
}

.proposta-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.proposta-text {
    font-size: 0.88rem;
    color: var(--color-muted-text);
    line-height: 1.45;
}

.btn-yellow-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-yellow);
    color: var(--color-primary-dark);
    padding: 14px 34px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-yellow-pill:hover {
    background-color: var(--color-yellow-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* 7. SEÇÃO BIOGRAFIA COMPLETA */
.section-biografia {
    padding: 90px 0;
    background-color: var(--color-bg-light);
}

.biografia-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

.bio-card-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bio-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.bio-photo-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.bio-photo-badge span {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--color-yellow);
    line-height: 1;
}

.bio-photo-badge small {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.bio-subtitle {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--color-primary-dark);
    margin-bottom: 18px;
}

.bio-p {
    font-size: 1.02rem;
    color: var(--color-muted-text);
    margin-bottom: 14px;
}

.leis-destaque-box {
    background-color: var(--color-white);
    border-left: 4px solid var(--color-primary);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
}

.leis-destaque-box h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.leis-list li {
    font-size: 0.9rem;
    color: var(--color-dark-text);
    margin-bottom: 8px;
    font-weight: 500;
}

/* CARROSSEL DE FOTOS — ROLAGEM CONTÍNUA */
.section-galeria {
    padding: 80px 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    /* Fade nas bordas para efeito premium */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: carousel-scroll 40s linear infinite;
}

/* Pausa ao hover */
.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes carousel-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-slide {
    flex-shrink: 0;
    width: 420px;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.carousel-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .carousel-slide {
        width: 280px;
    }
    .carousel-slide img {
        height: 210px;
    }
    .carousel-track {
        animation-duration: 28s;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        width: 220px;
    }
    .carousel-slide img {
        height: 170px;
    }
    .carousel-track {
        animation-duration: 22s;
    }
}


/* 8. SEÇÃO LIVRO */
.section-livro {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.livro-card {
    background: linear-gradient(135deg, #063B82 0%, #0754B8 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.livro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.livro-cover-col {
    display: flex;
    justify-content: center;
}

.book-mockup {
    width: 230px;
    height: 330px;
    background: #0B2545;
    border-radius: 4px 12px 12px 4px;
    position: relative;
    box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.45);
    border-left: 6px solid #FFD000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.book-author {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--color-yellow);
}

.book-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--color-white);
    line-height: 1.2;
    margin-top: 10px;
}

.book-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 5px;
}

.book-badge {
    align-self: flex-end;
    background-color: var(--color-yellow);
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.badge-sub {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--color-yellow);
    letter-spacing: 1.5px;
}

.livro-heading {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.2rem;
    margin: 8px 0 4px;
}

.livro-sub-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.livro-sinopse {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.6;
}

.apae-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.book-meta-details {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.btn-light {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    border: none;
}

.btn-light:hover {
    background-color: var(--color-yellow);
    color: var(--color-primary-dark);
}

/* 9. SEÇÃO FALE COMIGO FULL & RODAPÉ */
.section-fale-comigo-full {
    padding: 90px 0;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.fale-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fale-header-brand {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 35px;
}

.chat-icon-bg {
    width: 60px;
    height: 60px;
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-icon-bg svg {
    width: 30px;
    height: 30px;
}

.fale-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    color: var(--color-yellow);
}

.fale-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.contact-direct-list {
    margin-bottom: 35px;
}

.contact-direct-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-direct-list svg {
    width: 22px;
    height: 22px;
    color: var(--color-yellow);
}

.social-block h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.contact-form-dark .form-group {
    margin-bottom: 18px;
}

.contact-form-dark input,
.contact-form-dark textarea {
    padding-left: 20px;
}

/* RODAPÉ */
.site-footer {
    background-color: #042756;
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 0;
    font-size: 0.9rem;
    border-top: 4px solid var(--color-yellow);
}

/* Grid de 3 colunas */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 50px;
    padding-bottom: 50px;
}

/* Coluna 1: Marca */
.footer-col-brand .footer-logo-img {
    width: 200px;
    height: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.footer-col-brand .footer-logo-img:hover {
    filter: drop-shadow(0 4px 14px rgba(255, 208, 0, 0.3));
    transform: scale(1.02);
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 22px;
    max-width: 280px;
}

/* Ícones sociais no footer */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-social-btn svg {
    width: 18px;
    height: 18px;
}

.footer-social-btn:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* Títulos das colunas */
.footer-col-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--color-yellow);
    letter-spacing: 2px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-yellow);
    border-radius: 2px;
}

/* Lista de contato */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--color-yellow);
    flex-shrink: 0;
}

/* Lista de navegação */
.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list li a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-nav-list li a::before {
    content: '›';
    color: var(--color-yellow);
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1;
}

.footer-nav-list li a:hover {
    color: var(--color-yellow);
    transform: translateX(4px);
}

/* Divisória */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

/* Linha inferior */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Responsivo: Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* 10. ANIMAÇÕES DE SCROLL (Intersection Observer) */

/* Estado inicial: elementos invisíveis antes de entrar na tela */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

/* Estado final: visível após entrar na tela */
.animate-fade-up.is-visible,
.animate-slide-left.is-visible,
.animate-slide-right.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Acessibilidade: desativa animações para quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
    .animate-fade-up,
    .animate-slide-left,
    .animate-slide-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* 11. RESPONSIVIDADE (MEDIA QUERIES) */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-name {
        font-size: 3.5rem;
    }

    .hero-photo-wrapper {
        order: -1;
    }

    .falar-container,
    .biografia-grid,
    .livro-grid,
    .fale-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .propostas-grid,
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .main-nav.open {
        left: 0;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .header-cta {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-name {
        font-size: 2.8rem;
    }

    .hero-photo {
        height: 380px;
    }

    .propostas-grid,
    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Avatar Popup Free */
.avatar-popup-floating {
    position: fixed;
    bottom: -600px;
    right: 20px;
    z-index: 9999;
    transition: bottom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 320px;
    height: 480px; /* Aumentado para acomodar imagem maior */
    pointer-events: none;
}

.avatar-popup-floating.show {
    bottom: 0px;
}

.speech-bubble {
    position: absolute;
    bottom: 280px; /* Subido um pouco para não bater na imagem maior */
    right: 60px;
    background: #fff;
    border-radius: 40px; /* Bordas bem redondas estilo gibi */
    border: 4px solid var(--color-primary);
    width: 280px;
    padding: 20px;
    z-index: 2;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    pointer-events: auto; /* Reativa o clique dentro do balão */
}

.speech-bubble-tail {
    position: absolute;
    bottom: -24px;
    right: 30px; /* Cauda no canto inferior direito apontando pro rosto */
    width: 0;
    height: 0;
    border-top: 25px solid var(--color-primary);
    border-left: 25px solid transparent;
}

.speech-bubble-tail::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 2px;
    width: 0;
    height: 0;
    border-top: 18px solid #fff;
    border-left: 18px solid transparent;
}

/* removed */

.avatar-img-free {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px; /* Aumentado de 150px para 250px */
    height: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

.speech-bubble h4 { color: var(--color-primary); margin-bottom: 10px; font-size: 1.3rem; font-family: var(--font-heading); font-weight: 800; }
.speech-bubble p { font-size: 0.9rem; color: #444; margin-bottom: 15px; line-height: 1.4; }
.speech-bubble form { display: flex; flex-direction: column; gap: 10px; }
.speech-bubble input { padding: 12px 15px; border: 1px solid #ccc; border-radius: 25px; font-size: 0.9rem; outline: none; font-family: inherit; }
.speech-bubble input:focus { border-color: var(--color-primary); }
.speech-bubble button[type="submit"] { background: var(--color-yellow); color: var(--color-primary-dark); border: none; padding: 12px 15px; border-radius: 25px; font-weight: 800; cursor: pointer; transition: transform 0.2s; font-size: 1rem; }
.speech-bubble button[type="submit"]:hover { transform: scale(1.05); }
.close-popup { position: absolute; top: -15px; right: -15px; background: #fff; border: 2px solid var(--color-primary); width: 35px; height: 35px; border-radius: 50%; font-size: 20px; color: var(--color-primary); cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.close-popup:hover { background: var(--color-primary); color: #fff; }

@media (max-width: 768px) {
    .avatar-popup-floating { right: 0; transform: scale(0.9); transform-origin: bottom right; }
    .speech-bubble { right: 40px; }
