/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Paleta Cromática: Azul Escuro Profundo + Dourado + Branco */
    --bg-deep: #050d1a;          /* Fundo azul-escuro profundo / azul noite */
    --bg-card: #0a182d;          /* Fundo dos cartões (azul noite um pouco mais claro) */
    --bg-header: rgba(5, 13, 26, 0.95);
    
    --primary-gold: #dfc49f;     /* Dourado institucional (mais claro para contraste WCAG) */
    --gold-hover: #d4af37;       /* Amarelo-ouro para interações e foco */
    --gold-light: rgba(197, 168, 128, 0.15);
    --gold-border: rgba(197, 168, 128, 0.35);
    
    --text-primary: #ffffff;     /* Texto principal em branco */
    --text-muted: #94a3b8;       /* Texto secundário (cinza azulado suave) */
    --text-dark: #050d1a;        /* Texto escuro para botões dourados */
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 85px;
    
    /* Tipografia Solene e Institucional */
    --font-title: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Transições & Sombras */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-gold: 0 4px 20px rgba(197, 168, 128, 0.15);
    --shadow-gold-hover: 0 8px 30px rgba(212, 175, 55, 0.3);
    
    /* Cantos Arredondados */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;           /* Borda dourada arredondada para cartões */
    --radius-full: 9999px;
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-muted);
    background-color: var(--bg-deep); /* Fundo azul escuro em todo o site */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* ==========================================================================
   UTILITÁRIOS E ESTRUTURA
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.section {
    padding: 7rem 0;
    position: relative;
}

/* Divisórias Douradas Finas */
.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.section:last-of-type::after {
    display: none;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 5rem auto;
}

.section-header-left {
    text-align: left;
    margin: 0 0 5rem 0;
    max-width: 800px;
}

.section-header-left .separator-gold {
    margin: 1.5rem 0 0 0;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Separador Dourado Pequeno */
.separator-gold {
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
    margin: 1.5rem auto 0 auto;
}

/* ==========================================================================
   BOTÕES (ESTILO SOLENE / PRESTÍGIO)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 0.95rem;
}

/* Botão Principal: Dourado Sólido */
.btn-primary {
    background-color: var(--primary-gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--primary-gold);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-hover);
}

/* Botão Secundário: Contorno Dourado com Fundo Transparente */
.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--primary-gold);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--gold-light);
    color: var(--primary-gold);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
}

/* Botão Dourado Especial */
.btn-gold {
    background-color: var(--primary-gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--primary-gold);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-hover);
}

.accent-text {
    color: var(--primary-gold);
    font-weight: 700;
}

/* ==========================================================================
   CABEÇALHO & NAVEGAÇÃO
   ========================================================================== */
.site-header {
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-border);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

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

.logo-text {
    font-family: var(--font-title);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1100;
}

.hamburger, .hamburger::before, .hamburger::after {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.hamburger {
    position: relative;
    top: 9px;
}

.hamburger::before {
    content: '';
    position: absolute;
    top: -8px;
}

.hamburger::after {
    content: '';
    position: absolute;
    top: 8px;
}

/* Animação do Menu Mobile */
.menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background: radial-gradient(circle at center, var(--bg-card), var(--bg-deep));
    color: var(--text-primary);
    padding: 8rem 0 10rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: var(--gold-light);
    border: 1px solid var(--gold-border);
    color: var(--primary-gold);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

/* Três Pilares no Hero */
.hero-pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.5s;
    animation-fill-mode: both;
}

.pillar-tag {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-card);
    border: 1.5px solid var(--primary-gold);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.pillar-tag i {
    color: var(--primary-gold);
}

.pillar-tag:hover {
    transform: translateY(-2px);
    border-color: var(--gold-hover);
    box-shadow: var(--shadow-gold-hover);
}

/* Efeito de Ondulação Suave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: var(--bg-deep);
}

/* ==========================================================================
   SECÇÃO: PORQUE ESTA CAUSA IMPORTA
   ========================================================================== */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

/* Cartões com Borda Dourada Arredondada */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.25);
}

/* Ícones Circulares Dourados com Linha Fina */
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-gold);
    background-color: transparent;
    color: var(--primary-gold);
    font-size: 1.6rem;
    margin-bottom: 2.25rem;
    transition: var(--transition);
}

.card:hover .card-icon {
    background-color: var(--primary-gold);
    color: var(--bg-deep);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.4);
}

.card-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* ==========================================================================
   SECÇÃO: O QUE GANHA O CIDADÃO
   ========================================================================== */
.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: rgba(10, 24, 45, 0.4);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gold-border);
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.benefit-number {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.benefit-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SECÇÃO: UMA REALIDADE QUE TEM DE MUDAR
   ========================================================================== */
.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

/* Moldura Dourada na Imagem */
.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 13, 26, 0.4), transparent);
    pointer-events: none;
}

.campaign-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.image-wrapper:hover .campaign-image {
    transform: scale(1.04);
}

/* Bloco Manifesto inspirado nos cartões da referência */
.manifesto-quote {
    background-color: var(--bg-card);
    border: 1.5px solid var(--primary-gold);
    padding: 2.5rem;
    margin: 2.25rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
    position: relative;
}

.manifesto-quote::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: var(--font-title);
    font-size: 5rem;
    color: rgba(197, 168, 128, 0.15);
    line-height: 1;
}

.quote-text {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.section-paragraph {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
}

.cta-inline {
    margin-top: 2rem;
}

/* ==========================================================================
   SECÇÃO: COMUNICADO (CARTÃO DE ALTA FIDELIDADE)
   ========================================================================== */
.comunicado-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.comunicado-card {
    background-color: var(--bg-card);
    border: 2px solid var(--primary-gold);
    border-radius: var(--radius-lg);
    padding: 4rem 3.5rem;
    box-shadow: var(--shadow-gold);
    position: relative;
}

.comunicado-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1.5px solid var(--primary-gold);
    padding-bottom: 1.5rem;
}

.comunicado-seal {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    background-color: var(--bg-deep);
    padding: 5px;
}

.comunicado-seal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.comunicado-title {
    font-family: var(--font-body);
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-gold);
}

.comunicado-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.comunicado-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.comunicado-item:last-child {
    border-bottom: none;
}

.comunicado-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.comunicado-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.65;
}

.comunicado-signature {
    font-family: 'Alex Brush', cursive, Georgia, serif;
    font-size: 2.6rem;
    color: var(--primary-gold);
    text-align: right;
    margin-top: 3rem;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   SECÇÃO: PERGUNTAS FREQUENTES (ACORDEÃO)
   ========================================================================== */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.75rem 2.25rem;
    text-align: left;
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    background-color: transparent;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--primary-gold);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-inner {
    padding: 0 2.25rem 1.75rem 2.25rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    padding-top: 1.25rem;
}

.faq-answer-inner a {
    color: var(--primary-gold);
    font-weight: 600;
    border-bottom: 1px dotted var(--primary-gold);
}

.faq-answer-inner a:hover {
    color: var(--gold-hover);
    border-bottom-style: solid;
}

/* ==========================================================================
   SECÇÃO: CALL TO ACTION FINAL / COMO AJUDAR
   ========================================================================== */
.section-cta {
    background: radial-gradient(circle at center, var(--bg-card), var(--bg-deep));
    color: var(--text-primary);
    padding: 8rem 0;
}

.cta-inner {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.75rem;
    color: var(--text-primary);
}

.cta-desc {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

/* Caixa CTA Principal */
.cta-box {
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
    background-color: var(--bg-card);
    border: 1.5px solid var(--primary-gold);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-gold);
}

.cta-notice {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 2rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-notice strong {
    color: var(--text-primary);
}

.cta-notice i {
    color: var(--primary-gold);
}

/* Painel de Partilha */
.share-panel {
    border-top: 1px solid var(--gold-border);
    padding-top: 3.5rem;
}

.share-title {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-gold);
    margin-bottom: 1.75rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gold-border);
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.share-whatsapp:hover {
    background-color: #1f8b43;
    border-color: #25d366;
}

.share-linkedin:hover {
    background-color: #0b5885;
    border-color: #0077b5;
}

.share-twitter:hover {
    background-color: #121212;
    border-color: #ffffff;
}

.share-facebook:hover {
    background-color: #1153b0;
    border-color: #1877f2;
}

.share-copy:hover {
    background-color: var(--primary-gold);
    color: var(--bg-deep);
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.site-footer {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    border-top: 1px solid var(--gold-border);
    padding: 6rem 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 4.5rem;
    padding-bottom: 4.5rem;
}

.logo-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

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

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 365px;
    margin-bottom: 1.5rem;
}

/* Redes Sociais no Footer */
.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.5px solid var(--gold-border);
    color: var(--text-primary);
    font-size: 1.05rem;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-2px);
    color: var(--text-primary);
    box-shadow: var(--shadow-gold);
}

.social-icon.fb:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

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

.footer-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: var(--primary-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary-gold);
    padding-left: 0.35rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.footer-email i {
    color: var(--primary-gold);
}

.footer-email a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

.footer-peticao-link {
    margin-top: 0.5rem;
}

.link-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-gold);
    font-weight: 700;
    transition: var(--transition);
}

.link-highlight:hover {
    color: var(--gold-hover);
    transform: translateX(4px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2.25rem 0;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sub-copyright {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.4);
}

/* ==========================================================================
   ANIMAÇÕES CSS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-two-columns {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .hero-section {
        padding: 6rem 0 8rem 0;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 340px;
    }
    
    /* Menu Sanduíche Responsivo */
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-deep);
        padding: 4rem 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        display: block;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        border-top: 1px solid var(--gold-border);
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .nav-link {
        font-size: 1.3rem;
        width: auto;
    }
    
    .btn-header {
        width: 100%;
        max-width: 280px;
        margin-top: 1rem;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .logo-text {
        font-size: 1.35rem;
    }
    
    .card {
        padding: 2.5rem 1.75rem;
    }
    
    .grid-cards {
        grid-template-columns: 1fr;
    }
    
    .comunicado-card {
        padding: 2.5rem 1.5rem;
    }
    
    .comunicado-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ==========================================================================
   QR CODE STYLES
   ========================================================================== */
.qr-code-wrapper {
    margin: 2.5rem auto 1.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 280px;
    padding: 1.5rem;
    background-color: var(--bg-deep);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.qr-code-wrapper:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.qr-link {
    display: block;
    width: 140px;
    height: 140px;
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.qr-link:hover {
    transform: scale(1.05);
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

/* ==========================================================================
   SOBRE O MOVIMENTO & MOBILIZAÇÃO STYLES
   ========================================================================== */
.card-sobre {
    background-color: var(--bg-card);
    border: 1.5px solid var(--primary-gold);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-sobre:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.25);
}

.card-sobre-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    width: 100%;
}

.card-sobre-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background-color: var(--gold-light);
    border: 1px solid var(--gold-border);
    color: var(--primary-gold);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-badge-wa {
    background-color: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.card-sobre-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-primary);
}

.card-sobre-title {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.card-sobre-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-whatsapp-group {
    background-color: #25d366;
    border-color: #25d366;
    color: #ffffff;
    width: 100%;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-group:hover, .btn-whatsapp-group:focus {
    background-color: #1f8b43;
    border-color: #1f8b43;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.social-channels-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    margin-top: auto;
}

.channels-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-gold);
    margin-bottom: 1.25rem;
}

.channels-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.channel-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gold-border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.channel-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-gold);
}

.channel-item.fb:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

.channel-item.ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border-color: transparent;
}

.channel-item.email:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-deep);
}

/* Redes Sociais com WhatsApp no Footer */
.social-icon.wa:hover {
    background-color: #25d366;
    border-color: #25d366;
}

.social-icon.email:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-deep);
}

.footer-whatsapp {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-bottom: 1rem;
}

.footer-wa-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.footer-wa-text i {
    color: #25d366;
    margin-right: 0.25rem;
}

/* ==========================================================================
   CAUSA COMUM STYLES & JUSTIFICATION
   ========================================================================== */
.causa-comum-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 1rem 0;
}

.causa-comum-card {
    background-color: var(--bg-card);
    border: 1.5px solid var(--primary-gold);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.causa-comum-card::before {
    content: '\f19c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 8rem;
    color: rgba(197, 168, 128, 0.03);
    pointer-events: none;
}

.causa-comum-text {
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--text-primary);
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}
