/* ==========================================================================
   RENECLEI DE SOUSA 22.192 - LANDING PAGE CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIÁVEIS CSS & CONFIGURAÇÕES GERAIS
   -------------------------------------------------------------------------- */
:root {
    /* Paleta Principal */
    --primary: #0752A5;
    --primary-dark: #06397A;
    --primary-deep: #032A5E;
    
    /* Cores de Apoio */
    --yellow: #F9C515;
    --yellow-hover: #e0b00e;
    --green: #16A34A;
    --white: #FFFFFF;
    
    /* Fundos & Neutros */
    --light: #F5F7FA;
    --light-border: #E2E8F0;
    --text: #172033;
    --text-light: #667085;
    
    /* Sombras & Efeitos */
    --shadow-sm: 0 4px 12px rgba(7, 82, 165, 0.06);
    --shadow-md: 0 10px 25px rgba(7, 82, 165, 0.12);
    --shadow-lg: 0 20px 45px rgba(3, 42, 94, 0.18);
    
    /* Bordas */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset básico */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   2. UTILITÁRIOS & LAYOUT
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 56px auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(7, 82, 165, 0.08);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag-light {
    background-color: rgba(249, 197, 21, 0.15);
    color: var(--yellow);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-deep);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Botões Reutilizáveis */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-yellow {
    background-color: var(--yellow);
    color: var(--primary-deep);
}

.btn-yellow:hover {
    background-color: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 197, 21, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-header {
    background-color: var(--yellow);
    color: var(--primary-deep);
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 50px;
}

.btn-header:hover {
    background-color: var(--yellow-hover);
    box-shadow: 0 4px 15px rgba(249, 197, 21, 0.3);
}

.btn-block {
    width: 100%;
}

/* --------------------------------------------------------------------------
   3. HEADER / NAVEGAÇÃO
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 4px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-normal);
}

.header.scrolled .header-container {
    height: 68px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hambúrguer Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%);
    color: var(--white);
    padding: 140px 0 90px 0;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(249, 197, 21, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--yellow);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-description strong {
    color: var(--white);
}

/* Card Candidato */
.candidate-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--yellow);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.candidate-info {
    display: flex;
    flex-direction: column;
}

.candidate-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

.candidate-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.candidate-number-wrap {
    margin: 8px 0;
}

.candidate-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: 1px;

}

.candidate-slogan {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Lado Direito - Imagem */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image-backdrop {
    position: absolute;
    width: 90%;
    height: 85%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7, 82, 165, 0.3) 0%, rgba(249, 197, 21, 0.2) 100%);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

.hero-badge-float {
    position: absolute;
    bottom: 30px;
    left: -10px;
    z-index: 3;
    background: var(--white);
    color: var(--text);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    border-left: 4px solid var(--green);
}

.hero-badge-float svg {
    color: var(--primary);
}

.hero-badge-float strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--primary-deep);
}

.hero-badge-float span {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* --------------------------------------------------------------------------
   5. INDICADOR DE CONFIANÇA (TRUST BAR)
   -------------------------------------------------------------------------- */
.trust-bar {
    background-color: var(--white);
    padding: 32px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}

.trust-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(7, 82, 165, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-deep);
    line-height: 1.2;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background-color: var(--light-border);
}

/* --------------------------------------------------------------------------
   6. CONHEÇA RENECLEI (ABOUT)
   -------------------------------------------------------------------------- */
.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--light);
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top;
}

.about-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(3, 42, 94, 0.9) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.about-image-caption strong {
    font-size: 1.125rem;
}

.about-image-caption span {
    font-size: 0.8125rem;
    color: var(--yellow);
    font-weight: 600;
}

.about-text-body p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text-body p.lead-p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
}

.about-highlight-box {
    margin-top: 32px;
    padding: 20px 24px;
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-highlight-box svg {
    color: var(--primary);
    flex-shrink: 0;
}

.about-highlight-box span {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary-deep);
}

/* --------------------------------------------------------------------------
   7. SEÇÃO DE EXPERIÊNCIA
   -------------------------------------------------------------------------- */
.experience {
    background-color: var(--light);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.experience-card {
    background-color: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(0,0,0,0.03);
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background-color: rgba(7, 82, 165, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-big-stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. POR QUE ENTRAR PARA A POLÍTICA
   -------------------------------------------------------------------------- */
.why-politics {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%);
    color: var(--white);
}

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

.why-body-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    line-height: 1.7;
}

.quote-box {
    margin: 36px 0;
    padding: 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    position: relative;
}

.quote-icon {
    color: var(--yellow);
    opacity: 0.8;
    margin-bottom: 12px;
}

.quote-box p {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    font-style: italic;
    line-height: 1.4;
}

.why-footer-p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 24px;
}

.pillars-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.pillar-pill {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   9. PRINCIPAL BANDEIRA (PRIORIDADES)
   -------------------------------------------------------------------------- */
.priorities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.priority-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-border);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.priority-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--yellow);
}

.priority-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.priority-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(7, 82, 165, 0.15);
    margin-bottom: 16px;
    line-height: 1;
}

.priority-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-deep);
    margin-bottom: 12px;
}

.priority-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. MANIFESTO
   -------------------------------------------------------------------------- */
.manifesto {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%);
    color: var(--white);
    padding: 80px 0;
}

.manifesto-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.manifesto-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.manifesto-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: top;
}

.manifesto-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.manifesto-body p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    line-height: 1.6;
}

.manifesto-highlights {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mh-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.mh-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yellow);
    margin-top: 8px;
}

.manifesto-signature {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
}

.sig-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
}

.sig-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   11. FAÇA PARTE (FORMULÁRIO)
   -------------------------------------------------------------------------- */
.join {
    background-color: var(--light);
}

.join-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 56px 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.join-header {
    margin-bottom: 40px;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    border: 1.5px solid var(--light-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(7, 82, 165, 0.15);
}

/* Custom Checkbox */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px 0 8px 0;
}

.checkbox-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--text-light);
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 2px solid var(--light-border);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--primary);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   12. MEMORIZAÇÃO DO NÚMERO
   -------------------------------------------------------------------------- */
.vote-number {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    color: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.vote-bg-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.accent-green {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.25) 0%, transparent 70%);
}

.accent-yellow {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 197, 21, 0.25) 0%, transparent 70%);
}

.vote-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.vote-subtext {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.big-number-display {
    font-size: 6.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: 4px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 12px;
}

.vote-candidate-name {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.vote-candidate-role {
    font-size: 1.125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.vote-slogan {
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.vote-final-call {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid var(--yellow);
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yellow);
}

/* --------------------------------------------------------------------------
   13. REDES SOCIAIS
   -------------------------------------------------------------------------- */
.socials {
    background-color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    background-color: var(--light);
    color: var(--primary-deep);
    transition: var(--transition-normal);
    border: 1px solid var(--light-border);
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: var(--white);
    border-color: transparent;
}

.social-btn.facebook:hover {
    background-color: #1877F2;
    color: var(--white);
    border-color: transparent;
}

.social-btn.whatsapp:hover {
    background-color: #25D366;
    color: var(--white);
    border-color: transparent;
}

/* --------------------------------------------------------------------------
   14. RODAPÉ (FOOTER)
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--primary-deep);
    color: var(--white);
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.footer-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-desc strong {
    color: var(--yellow);
}

.legal-info {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   15. BOTÃO FLUTUANTE DE WHATSAPP
   -------------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background-color: #25D366;
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* --------------------------------------------------------------------------
   16. ANIMAÇÕES (INTERSECTION OBSERVER)
   -------------------------------------------------------------------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   17. RESPONSIVIDADE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .candidate-card {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        order: 2;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .priorities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .manifesto-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .manifesto-signature {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .header-container {
        height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        padding: 40px 24px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .header-cta {
        display: none;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .candidate-number {
        font-size: 3rem;
    }

    .trust-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 0 16px;
    }

    .trust-divider {
        display: none;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .priorities-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .join-card {
        padding: 32px 20px;
    }

    .big-number-display {
        font-size: 4.5rem;
    }

    .vote-candidate-name {
        font-size: 1.5rem;
    }

    .whatsapp-float-text {
        display: none;
    }

    .whatsapp-float {
        padding: 16px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .candidate-number {
        font-size: 2.5rem;
    }

    .big-number-display {
        font-size: 3.5rem;
    }

    .btn {
        width: 100%;
    }
}
