/*
Theme Name: Projeto Vida Nova
Theme URI: https://projetovidanova.org.br
Author: Projeto Vida Nova
Description: Tema oficial do Projeto Vida Nova — Transformando Vidas, Construindo Futuros. Compatível com Elementor.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: projeto-vida-nova
Tags: charity, nonprofit, elementor, donation, one-column, two-columns, custom-colors, custom-menu, featured-images, footer-widgets, full-width-template, translation-ready
*/

/* =============================================
   VARIÁVEIS GLOBAIS (Design System)
   ============================================= */
:root {
    --pvn-primary:       #2DC89E;
    --pvn-primary-dark:  #1DAF8E;
    --pvn-primary-light: #4FD9B1;
    --pvn-dark:          #1E2235;
    --pvn-dark-2:        #252B3B;
    --pvn-text:          #333333;
    --pvn-text-light:    #666666;
    --pvn-white:         #FFFFFF;
    --pvn-bg-light:      #F8F9FA;
    --pvn-border:        #E8ECEF;

    --pvn-font-main:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --pvn-font-heading:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --pvn-radius:        8px;
    --pvn-radius-lg:     16px;
    --pvn-shadow:        0 4px 20px rgba(0,0,0,0.08);
    --pvn-shadow-lg:     0 8px 40px rgba(0,0,0,0.12);

    --pvn-transition:    all 0.3s ease;
    --pvn-max-width:     1200px;
}

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

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

body {
    font-family: var(--pvn-font-main);
    color: var(--pvn-text);
    background-color: var(--pvn-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.elementor-page {
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--pvn-primary-dark);
}

ul {
    list-style: none;
}

/* =============================================
   TIPOGRAFIA
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--pvn-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pvn-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--pvn-text-light);
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--pvn-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--pvn-text-light);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* =============================================
   BOTÕES
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--pvn-transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

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

.btn-primary:hover {
    background-color: var(--pvn-primary-dark);
    border-color: var(--pvn-primary-dark);
    color: var(--pvn-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 200, 158, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--pvn-white);
    border-color: var(--pvn-white);
}

.btn-outline:hover {
    background-color: var(--pvn-white);
    color: var(--pvn-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: rgba(255,255,255,0.15);
    color: var(--pvn-white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}

.btn-dark:hover {
    background-color: var(--pvn-white);
    color: var(--pvn-dark);
    border-color: var(--pvn-white);
}

/* =============================================
   HEADER / NAVEGAÇÃO
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--pvn-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--pvn-transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background-color: var(--pvn-primary);
    border-radius: var(--pvn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--pvn-white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pvn-dark);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--pvn-text-light);
    font-weight: 400;
}

/* Navegação principal */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    color: var(--pvn-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--pvn-radius);
    transition: var(--pvn-transition);
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.current-menu-item {
    color: var(--pvn-primary);
    background-color: rgba(45, 200, 158, 0.08);
}

.header-cta {
    margin-left: 1rem;
}

/* Menu mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--pvn-dark);
    transition: var(--pvn-transition);
    border-radius: 2px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--pvn-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(24, 28, 44, 0.92) 0%,
        rgba(24, 28, 44, 0.82) 38%,
        rgba(24, 28, 44, 0.5) 70%,
        rgba(24, 28, 44, 0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    max-width: 700px;
    margin-left: 1.5rem;
}

@media (min-width: 1200px) {
    .hero-content {
        margin-left: calc((100vw - 1200px) / 2 + 1.5rem);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    color: var(--pvn-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background: linear-gradient(135deg, var(--pvn-primary) 0%, var(--pvn-primary-dark) 100%);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--pvn-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* =============================================
   MISSÃO SECTION
   ============================================= */
.missao-section {
    padding: 6rem 0;
    background-color: var(--pvn-white);
}

.missao-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.missao-content .section-title {
    margin-bottom: 2rem;
}

.missao-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.missao-tab {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--pvn-radius);
    cursor: pointer;
    transition: var(--pvn-transition);
    border: 2px solid transparent;
}

.missao-tab.active,
.missao-tab:hover {
    background-color: rgba(45, 200, 158, 0.06);
    border-color: var(--pvn-primary);
}

.tab-icon {
    width: 44px;
    height: 44px;
    background-color: var(--pvn-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tab-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--pvn-white);
}

.tab-text h4 {
    font-size: 1.1rem;
    color: var(--pvn-dark);
    margin-bottom: 0.25rem;
}

.tab-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--pvn-text-light);
}

.missao-image {
    position: relative;
}

.missao-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--pvn-radius-lg);
}

/* =============================================
   ATIVIDADES SECTION
   ============================================= */
.atividades-section {
    padding: 6rem 0;
    background-color: var(--pvn-bg-light);
}

.atividades-header {
    max-width: var(--pvn-max-width);
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.atividades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.atividade-card {
    background: var(--pvn-white);
    border-radius: var(--pvn-radius-lg);
    overflow: hidden;
    box-shadow: var(--pvn-shadow);
    transition: var(--pvn-transition);
}

.atividade-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pvn-shadow-lg);
}

.atividade-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.atividade-card-body {
    padding: 1.5rem;
}

.atividade-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(45, 200, 158, 0.1);
    border-radius: var(--pvn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.atividade-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--pvn-primary);
}

.atividade-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.atividade-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =============================================
   DOAÇÃO SECTION
   ============================================= */
.doacao-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--pvn-dark) 0%, var(--pvn-dark-2) 100%);
    position: relative;
    overflow: hidden;
}

.doacao-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 200, 158, 0.12) 0%, transparent 70%);
}

.doacao-inner {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.doacao-content .section-title {
    color: var(--pvn-white);
    margin-bottom: 1rem;
}

.doacao-content .section-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.doacao-valores {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.doacao-valor-btn {
    padding: 0.625rem 1.25rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--pvn-white);
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--pvn-transition);
}

.doacao-valor-btn:hover,
.doacao-valor-btn.active {
    background-color: var(--pvn-primary);
    border-color: var(--pvn-primary);
}

.doacao-form-card {
    background: var(--pvn-white);
    border-radius: var(--pvn-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--pvn-shadow-lg);
}

.doacao-form-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--pvn-dark);
}

.doacao-metodos {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.metodo-btn {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--pvn-border);
    border-radius: var(--pvn-radius);
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--pvn-transition);
    background: transparent;
    color: var(--pvn-text);
}

.metodo-btn:hover,
.metodo-btn.active {
    border-color: var(--pvn-primary);
    color: var(--pvn-primary);
    background-color: rgba(45, 200, 158, 0.05);
}

.pix-area {
    text-align: center;
    padding: 1.5rem 0;
}

.pix-qr {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
    background-color: var(--pvn-bg-light);
    border-radius: var(--pvn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--pvn-border);
}

.pix-chave {
    font-size: 0.85rem;
    color: var(--pvn-text-light);
    margin-bottom: 1rem;
}

.pix-chave strong {
    display: block;
    font-size: 1rem;
    color: var(--pvn-dark);
    margin-top: 0.25rem;
}

/* =============================================
   GALERIA SECTION
   ============================================= */
.galeria-section {
    padding: 6rem 0;
    background-color: var(--pvn-white);
}

.galeria-header {
    max-width: var(--pvn-max-width);
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.galeria-item {
    border-radius: var(--pvn-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.galeria-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    min-height: 200px;
}

.galeria-item:first-child img {
    min-height: 400px;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 200, 158, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--pvn-transition);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay svg {
    width: 40px;
    height: 40px;
    fill: var(--pvn-white);
}

/* =============================================
   NOTÍCIAS SECTION
   ============================================= */
.noticias-section {
    padding: 6rem 0;
    background-color: var(--pvn-bg-light);
}

.noticias-header {
    max-width: var(--pvn-max-width);
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.noticia-card {
    background: var(--pvn-white);
    border-radius: var(--pvn-radius-lg);
    overflow: hidden;
    box-shadow: var(--pvn-shadow);
    transition: var(--pvn-transition);
}

.noticia-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pvn-shadow-lg);
}

.noticia-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.noticia-card-body {
    padding: 1.5rem;
}

.noticia-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.noticia-cat {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pvn-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.noticia-data {
    font-size: 0.8rem;
    color: var(--pvn-text-light);
}

.noticia-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.noticia-card h3 a {
    color: var(--pvn-dark);
}

.noticia-card h3 a:hover {
    color: var(--pvn-primary);
}

.noticia-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.noticia-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pvn-primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background-color: var(--pvn-dark);
    padding: 5rem 0 2rem;
}

.footer-inner {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .site-logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-name {
    color: var(--pvn-white);
}

.footer-brand .logo-tagline {
    color: rgba(255,255,255,0.5);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
    max-width: 280px;
}

.footer-col h4 {
    color: var(--pvn-white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--pvn-primary);
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--pvn-transition);
}

.footer-links a:hover {
    color: var(--pvn-primary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--pvn-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-social p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--pvn-radius);
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--pvn-transition);
}

.social-link:hover {
    background-color: var(--pvn-primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--pvn-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* =============================================
   PÁGINAS INTERNAS
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, var(--pvn-dark) 0%, var(--pvn-dark-2) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    color: var(--pvn-white);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--pvn-text);
    margin-bottom: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--pvn-bg-light);
    padding: 0.75rem 0;
    font-size: 0.85rem;
}

.breadcrumb .container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--pvn-text-light);
}

.breadcrumb a {
    color: var(--pvn-primary);
}

/* =============================================
   SINGLE POST
   ============================================= */
.single-post-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem 0;
}

.post-category-badge {
    display: inline-block;
    padding: 0.3rem 0.875rem;
    background-color: rgba(45, 200, 158, 0.1);
    color: var(--pvn-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.post-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--pvn-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--pvn-text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-featured-image {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
}

.post-featured-image img {
    width: 100%;
    border-radius: var(--pvn-radius-lg);
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--pvn-text);
}

.post-body h2, .post-body h3 {
    margin: 2rem 0 1rem;
}

.post-body ul, .post-body ol {
    list-style: initial;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* =============================================
   CONTATO
   ============================================= */
.contato-section {
    padding: 6rem 0;
}

.contato-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contato-info h2 {
    margin-bottom: 1rem;
}

.contato-info p {
    margin-bottom: 2rem;
}

.contato-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contato-item-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(45, 200, 158, 0.1);
    border-radius: var(--pvn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-item-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--pvn-primary);
}

.contato-item-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pvn-text-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contato-item-text p {
    color: var(--pvn-dark);
    font-weight: 500;
    margin-bottom: 0;
}

.contato-form {
    background: var(--pvn-white);
    border-radius: var(--pvn-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--pvn-shadow);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--pvn-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--pvn-border);
    border-radius: var(--pvn-radius);
    font-size: 1rem;
    font-family: var(--pvn-font-main);
    color: var(--pvn-text);
    transition: var(--pvn-transition);
    background-color: var(--pvn-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pvn-primary);
    box-shadow: 0 0 0 3px rgba(45, 200, 158, 0.15);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* =============================================
   ELEMENTOR OVERRIDES
   ============================================= */
.elementor-section.elementor-section-full_width {
    width: 100%;
}

body.elementor-page .site-main {
    padding: 0;
}

/* Oculta padding padrão do WordPress quando Elementor está ativo */
.elementor-template-full-width .site-header ~ main {
    padding-top: 0;
}

/* =============================================
   MERCADO PAGO / PAGUE SEGURO
   ============================================= */
.mp-button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mp-button-wrapper .btn {
    justify-content: center;
    font-size: 1.05rem;
    padding: 1rem 2rem;
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .missao-inner,
    .doacao-inner,
    .contato-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .missao-image {
        order: -1;
    }
}

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

    .main-nav { display: none; }
    .main-nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--pvn-white);
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0.25rem;
        z-index: 999;
    }

    .menu-toggle { display: flex; }
    .header-cta { display: none; }

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

    .atividades-grid,
    .galeria-grid,
    .noticias-grid {
        grid-template-columns: 1fr;
    }

    .galeria-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    .noticias-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .doacao-inner {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =============================================
   WORDPRESS CORE
   ============================================= */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.wp-block-image img {
    border-radius: var(--pvn-radius);
}

.alignwide {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: 100%;
}

.wp-caption {
    width: 100% !important;
}

/* Pagination */
.pvn-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 0;
}

.pvn-pagination a,
.pvn-pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--pvn-radius);
    border: 2px solid var(--pvn-border);
    font-weight: 600;
    color: var(--pvn-text);
    transition: var(--pvn-transition);
}

.pvn-pagination a:hover,
.pvn-pagination .current {
    background-color: var(--pvn-primary);
    border-color: var(--pvn-primary);
    color: var(--pvn-white);
}

/* =============================================
   HOME — GRID DE 4 ATIVIDADES + LINK SETA
   ============================================= */
.atividades-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pvn-primary);
    font-weight: 600;
    font-size: 1rem;
}
.link-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}
.link-arrow:hover svg { transform: translateX(4px); }

/* =============================================
   HISTÓRIAS QUE INSPIRAM (depoimentos)
   ============================================= */
.historias-section {
    padding: 6rem 0;
    background-color: var(--pvn-white);
}
.historias-header {
    max-width: var(--pvn-max-width);
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}
.historias-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.depoimento-card {
    background: #EEFBF6;
    border-radius: var(--pvn-radius-lg);
    padding: 2.5rem;
}
.depoimento-texto {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--pvn-text);
    margin-bottom: 1.5rem;
}
.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.depoimento-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pvn-primary-light);
    color: var(--pvn-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.depoimento-info strong {
    display: block;
    color: var(--pvn-dark);
    font-size: 1rem;
}
.depoimento-info span {
    font-size: 0.85rem;
    color: var(--pvn-text-light);
}

/* =============================================
   CTA — FAÇA PARTE DESTA TRANSFORMAÇÃO
   ============================================= */
.cta-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, var(--pvn-primary) 0%, var(--pvn-primary-dark) 100%);
    text-align: center;
}
.cta-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--pvn-white);
    margin-bottom: 1rem;
}
.cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-white {
    background-color: var(--pvn-white);
    color: var(--pvn-primary-dark);
    border-color: var(--pvn-white);
}
.btn-white:hover {
    background-color: var(--pvn-bg-light);
    color: var(--pvn-primary-dark);
    transform: translateY(-2px);
}
.cta-section .btn-outline:hover {
    background-color: var(--pvn-white);
    color: var(--pvn-primary-dark);
}

/* =============================================
   ANIMAÇÕES DE SCROLL (reveal)
   ============================================= */
[data-anim] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
[data-anim="fade-up"]    { transform: translateY(32px); }
[data-anim="fade-right"] { transform: translateX(-32px); }
[data-anim="fade-left"]  { transform: translateX(32px); }
[data-anim].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    [data-anim] { opacity: 1; transform: none; transition: none; }
}

/* Responsivo — home */
@media (max-width: 1024px) {
    .atividades-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .atividades-grid-4 { grid-template-columns: 1fr; }
    .historias-grid { grid-template-columns: 1fr; }
    .depoimento-card { padding: 1.75rem; }
}

/* =============================================
   HERO DE SUBPÁGINA (Sobre, Atividades, etc.)
   ============================================= */
.subpage-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.subpage-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}
.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24,28,44,0.75) 0%, rgba(24,28,44,0.85) 100%);
}
.subpage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 1.5rem;
}
.subpage-hero-content h1 {
    color: var(--pvn-white);
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 0.75rem;
}
.subpage-hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 0;
}

/* =============================================
   NOSSA HISTÓRIA
   ============================================= */
.historia-section { padding: 6rem 0; background: var(--pvn-white); }
.historia-inner {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.historia-text p { font-size: 1.02rem; line-height: 1.8; color: var(--pvn-text-light); }
.historia-text strong { color: var(--pvn-dark); }
.historia-galeria {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.historia-galeria img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--pvn-radius);
}
.historia-galeria img:nth-child(1) { margin-top: 1.5rem; }
.historia-galeria img:nth-child(4) { margin-top: -1.5rem; }

/* =============================================
   NOSSOS VALORES
   ============================================= */
.valores-section { padding: 6rem 0; background: var(--pvn-bg-light); }
.valores-header { max-width: var(--pvn-max-width); margin: 0 auto 3rem; padding: 0 1.5rem; }
.valores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.valor-card {
    background: var(--pvn-white);
    border-radius: var(--pvn-radius-lg);
    padding: 2rem;
    box-shadow: var(--pvn-shadow);
}
.valor-card h3 { color: var(--pvn-primary); font-size: 1.25rem; margin-bottom: 0.75rem; }
.valor-card p { color: var(--pvn-text-light); margin-bottom: 0; }

/* =============================================
   NOSSA EQUIPE
   ============================================= */
.equipe-section { padding: 6rem 0; background: var(--pvn-white); }
.equipe-header { max-width: var(--pvn-max-width); margin: 0 auto 3rem; padding: 0 1.5rem; }
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--pvn-max-width);
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}
.equipe-item { text-align: center; }
.equipe-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: rgba(45,200,158,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.equipe-icon svg { width: 38px; height: 38px; fill: none; stroke: var(--pvn-primary); stroke-width: 2; }
.equipe-item h3 { font-size: 1.1rem; color: var(--pvn-dark); margin-bottom: 0.5rem; }
.equipe-item p { font-size: 0.92rem; color: var(--pvn-text-light); margin-bottom: 0; }
.equipe-nota {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    color: var(--pvn-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}
.equipe-nota strong { color: var(--pvn-primary); }

/* =============================================
   FAIXA DE INFO (verde)
   ============================================= */
.info-band {
    background: linear-gradient(135deg, var(--pvn-primary) 0%, var(--pvn-primary-dark) 100%);
    padding: 3.5rem 0;
}
.info-band-inner {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.info-band-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-band-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--pvn-radius);
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-band-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--pvn-white); stroke-width: 2; }
.info-band-item h4 { color: var(--pvn-white); font-size: 1.05rem; margin-bottom: 0.4rem; }
.info-band-item p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 0; line-height: 1.5; }

/* =============================================
   COMO CHEGAR (mapa)
   ============================================= */
.mapa-section { padding: 6rem 0; background: var(--pvn-bg-light); }
.mapa-header { max-width: var(--pvn-max-width); margin: 0 auto 2.5rem; padding: 0 1.5rem; }
.mapa-wrap {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}
.mapa-btn {
    position: absolute;
    top: 1rem;
    right: 2.5rem;
    z-index: 5;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    box-shadow: var(--pvn-shadow);
}
.mapa-btn svg { fill: none; stroke: currentColor; stroke-width: 2; }

/* Responsivo — Sobre Nós */
@media (max-width: 1024px) {
    .historia-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .equipe-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .info-band-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
    .valores-grid { grid-template-columns: 1fr; }
    .equipe-grid { grid-template-columns: 1fr 1fr; }
    .historia-galeria img:nth-child(1),
    .historia-galeria img:nth-child(4) { margin-top: 0; }
    .mapa-btn { position: static; display: inline-flex; margin-bottom: 1rem; }
}

/* =============================================
   PÁGINA ATIVIDADES
   ============================================= */
.atv-intro { padding: 4rem 0 1rem; background: var(--pvn-white); }
.atv-intro-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}
.atv-intro-inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--pvn-text-light);
    margin-bottom: 0;
}

.atv-detalhes { padding: 3rem 0; background: var(--pvn-white); }
.atv-row {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.atv-row-img { order: 2; }
.atv-row-text { order: 1; }
.atv-row--reverse .atv-row-img { order: 1; }
.atv-row--reverse .atv-row-text { order: 2; }

.atv-row-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--pvn-radius-lg);
    box-shadow: var(--pvn-shadow-lg);
}
.atv-badge {
    width: 60px;
    height: 60px;
    border-radius: var(--pvn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.atv-badge svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.atv-row-text h3 {
    font-size: 1.6rem;
    color: var(--pvn-dark);
    margin-bottom: 0.75rem;
}
.atv-row-text > p {
    color: var(--pvn-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.atv-bullets { display: flex; flex-direction: column; gap: 0.75rem; }
.atv-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--pvn-text);
    font-size: 0.98rem;
}
.atv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Ações de Apoio */
.apoio-section { padding: 6rem 0; background: var(--pvn-bg-light); }
.apoio-header { max-width: var(--pvn-max-width); margin: 0 auto 3rem; padding: 0 1.5rem; }
.apoio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.apoio-card {
    background: linear-gradient(135deg, #EEFBF6 0%, #F4FBF8 100%);
    border-radius: var(--pvn-radius-lg);
    padding: 2.5rem;
}
.apoio-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--pvn-radius);
    background: var(--pvn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.apoio-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--pvn-white); stroke-width: 2; }
.apoio-card h3 { font-size: 1.3rem; color: var(--pvn-dark); margin-bottom: 0.5rem; }
.apoio-card p { color: var(--pvn-text-light); margin-bottom: 0; }

/* Horário das Atividades */
.horario-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--pvn-primary) 0%, var(--pvn-primary-dark) 100%);
}
.horario-inner { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.horario-header { text-align: center; margin-bottom: 3rem; }
.horario-header h2 { color: var(--pvn-white); font-size: 2.2rem; margin-bottom: 0.5rem; }
.horario-header p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.horario-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(255,255,255,0.12);
    border-radius: var(--pvn-radius-lg);
    padding: 2.5rem;
}
.horario-col h4 {
    color: var(--pvn-white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255,255,255,0.25);
}
.horario-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.horario-col li { color: rgba(255,255,255,0.92); font-size: 0.95rem; }

/* Responsivo — Atividades */
@media (max-width: 900px) {
    .atv-row { grid-template-columns: 1fr; gap: 2rem; }
    .atv-row-img, .atv-row-text,
    .atv-row--reverse .atv-row-img, .atv-row--reverse .atv-row-text { order: unset; }
    .atv-row-img { order: 1 !important; }
    .atv-row-text { order: 2 !important; }
    .apoio-grid { grid-template-columns: 1fr; }
    .horario-grid { grid-template-columns: 1fr; gap: 2rem; padding: 1.75rem; }
}

/* =============================================
   PÁGINA GALERIA — grid + hover + lightbox
   ============================================= */
.galeria-page { padding: 5rem 0; background: var(--pvn-white); }
.galeria-page-grid {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.galeria-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: var(--pvn-radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--pvn-bg-light);
}
.galeria-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.galeria-card:hover img { transform: scale(1.08); }

.galeria-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 200, 158, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.galeria-card:hover .galeria-card-overlay { opacity: 1; }
.galeria-card-zoom {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.35s ease;
}
.galeria-card:hover .galeria-card-zoom { transform: scale(1); }
.galeria-card-zoom svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 2; }

.galeria-card-legenda {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.5rem 1.25rem 1.1rem;
    background: linear-gradient(to top, rgba(20,24,38,0.85) 0%, rgba(20,24,38,0) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.galeria-card:hover .galeria-card-legenda { transform: translateY(0); }

/* Lightbox */
.pvn-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(12, 14, 22, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pvn-lightbox.is-open { opacity: 1; visibility: visible; }
.lb-figure {
    margin: 0;
    max-width: 92vw;
    max-height: 88vh;
    text-align: center;
    transform: scale(0.96);
    transition: transform 0.3s ease;
}
.pvn-lightbox.is-open .lb-figure { transform: scale(1); }
.lb-figure img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--pvn-radius);
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    margin: 0 auto;
}
.lb-figure figcaption {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 1rem;
}
.lb-close, .lb-nav {
    position: absolute;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
    border-radius: 50%;
}
.lb-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    line-height: 1;
}
.lb-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-close:hover, .lb-nav:hover { background: var(--pvn-primary); }

/* Responsivo — Galeria */
@media (max-width: 900px) {
    .galeria-page-grid { grid-template-columns: 1fr 1fr; }
    .galeria-card-legenda { transform: translateY(0); padding: 2rem 1rem 0.9rem; }
}
@media (max-width: 560px) {
    .galeria-page-grid { grid-template-columns: 1fr; }
    .lb-nav { width: 44px; height: 44px; }
    .lb-prev { left: 0.5rem; }
    .lb-next { right: 0.5rem; }
}

/* =============================================
   PÁGINA NOTÍCIAS
   ============================================= */
.noticia-destaque-section { padding: 5rem 0 2rem; background: var(--pvn-white); }
.noticia-destaque {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--pvn-white);
    border-radius: var(--pvn-radius-lg);
    overflow: hidden;
    box-shadow: var(--pvn-shadow-lg);
}
.noticia-destaque {
    padding: 0;
    max-width: calc(var(--pvn-max-width) - 3rem);
    margin: 0 auto;
}
.noticia-destaque-img img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}
.noticia-destaque-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.noticia-destaque-body h2 {
    font-size: 1.7rem;
    color: var(--pvn-dark);
    margin: 0.5rem 0 0.75rem;
    line-height: 1.3;
}
.noticia-destaque-body p { color: var(--pvn-text-light); line-height: 1.7; margin-bottom: 1.5rem; }
.noticia-destaque-body .btn { align-self: flex-start; }

.noticia-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: rgba(45,200,158,0.12);
    color: var(--pvn-primary-dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    align-self: flex-start;
    width: fit-content;
}
.noticia-badge--destaque { background: var(--pvn-primary); color: #fff; }

.noticia-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--pvn-text-light);
    font-size: 0.85rem;
    margin: 0.9rem 0 0;
}
.noticia-meta svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.noticia-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }

.noticias-lista { padding: 3rem 0 6rem; background: var(--pvn-bg-light); }
.noticias-lista-header { max-width: var(--pvn-max-width); margin: 0 auto 3rem; padding: 0 1.5rem; }
.noticias-lista-grid {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.noticias-lista-grid .noticia-card {
    background: var(--pvn-white);
    border-radius: var(--pvn-radius-lg);
    overflow: hidden;
    box-shadow: var(--pvn-shadow);
    transition: var(--pvn-transition);
    display: flex;
    flex-direction: column;
}
.noticias-lista-grid .noticia-card:hover { transform: translateY(-5px); box-shadow: var(--pvn-shadow-lg); }
.noticia-card-img { display: block; overflow: hidden; }
.noticia-card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.noticia-card:hover .noticia-card-img img { transform: scale(1.06); }
.noticia-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.noticia-card-body h3 { font-size: 1.15rem; line-height: 1.4; margin: 0.2rem 0; }
.noticia-card-body h3 a { color: var(--pvn-dark); }
.noticia-card-body h3 a:hover { color: var(--pvn-primary); }
.noticia-card-body > p { font-size: 0.92rem; color: var(--pvn-text-light); margin: 0; flex: 1; }
.noticia-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--pvn-text-light);
    padding-top: 0.5rem;
}
.noticia-card-foot span { display: inline-flex; align-items: center; gap: 0.35rem; }
.noticia-card-foot svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.noticia-card-body .link-arrow { font-size: 0.9rem; margin-top: 0.25rem; }

/* Newsletter */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--pvn-primary) 0%, var(--pvn-primary-dark) 100%);
    text-align: center;
}
.newsletter-inner { max-width: 640px; margin: 0 auto; padding: 0 1.5rem; }
.newsletter-inner h2 { color: #fff; font-size: 2rem; margin-bottom: 0.75rem; }
.newsletter-inner > p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 520px;
    margin: 0 auto 1rem;
}
.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--pvn-font-main);
}
.newsletter-form input:focus { outline: 2px solid rgba(255,255,255,0.6); }
.newsletter-inner small { color: rgba(255,255,255,0.75); font-size: 0.82rem; }
.newsletter-msg {
    margin-top: 1rem;
    color: #fff;
    font-weight: 600;
    background: rgba(255,255,255,0.15);
    padding: 0.75rem 1rem;
    border-radius: var(--pvn-radius);
}

/* Responsivo — Notícias */
@media (max-width: 900px) {
    .noticia-destaque { grid-template-columns: 1fr; }
    .noticia-destaque-img img { min-height: 240px; }
    .noticias-lista-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .noticias-lista-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form .btn { justify-content: center; }
}

/* =============================================
   PÁGINA DOE AGORA
   ============================================= */
.subpage-hero--doe { min-height: 400px; }
.subpage-hero--doe .subpage-hero-bg { filter: grayscale(40%) brightness(0.9); }

/* Impacto */
.impacto-section { padding: 6rem 0; background: var(--pvn-white); }
.impacto-header { max-width: var(--pvn-max-width); margin: 0 auto 3rem; padding: 0 1.5rem; }
.impacto-grid {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.impacto-card {
    background: linear-gradient(135deg, #EEFBF6 0%, #F4FBF8 100%);
    border-radius: var(--pvn-radius-lg);
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.impacto-valor {
    background: var(--pvn-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.65rem 1rem;
    border-radius: var(--pvn-radius);
    white-space: nowrap;
    flex-shrink: 0;
}
.impacto-card p { margin: 0; color: var(--pvn-text); font-size: 0.98rem; line-height: 1.5; }

/* Como Doar */
.como-doar-section { padding: 6rem 0; background: var(--pvn-bg-light); }
.como-doar-header { max-width: var(--pvn-max-width); margin: 0 auto 3rem; padding: 0 1.5rem; }
.como-doar-grid {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.doar-card {
    background: var(--pvn-white);
    border-radius: var(--pvn-radius-lg);
    overflow: hidden;
    box-shadow: var(--pvn-shadow);
}
.doar-card-head {
    padding: 2rem 1.5rem;
    color: #fff;
}
.doar-card-head svg { width: 34px; height: 34px; fill: none; stroke: #fff; stroke-width: 2; margin-bottom: 0.75rem; }
.doar-card-head h3 { color: #fff; font-size: 1.25rem; margin: 0; }
.doar-head--cartao { background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%); }
.doar-head--pix    { background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%); }
.doar-head--banco  { background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%); }
.doar-card-body { padding: 1.5rem; }
.doar-card-body p { margin: 0; color: var(--pvn-text-light); line-height: 1.7; word-break: break-word; }
.doar-card-body strong { color: var(--pvn-dark); }

/* Formulário de doação */
.doacao-form-section { padding: 5rem 0; background: var(--pvn-white); }
.doacao-form-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--pvn-white);
    border-radius: var(--pvn-radius-lg);
    box-shadow: var(--pvn-shadow-lg);
    border: 1px solid var(--pvn-border);
}
.doacao-form-card h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.form-label { display: block; font-weight: 600; font-size: 0.92rem; color: var(--pvn-dark); margin: 1.1rem 0 0.5rem; }
.tipo-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.tipo-btn {
    padding: 0.8rem;
    border: 2px solid var(--pvn-border);
    background: var(--pvn-white);
    border-radius: var(--pvn-radius);
    font-weight: 600;
    cursor: pointer;
    color: var(--pvn-text-light);
    transition: var(--pvn-transition);
}
.tipo-btn.active { border-color: var(--pvn-primary); color: var(--pvn-primary); background: rgba(45,200,158,0.06); }
.valor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.valor-btn {
    padding: 0.8rem 0.4rem;
    border: 2px solid var(--pvn-border);
    background: var(--pvn-white);
    border-radius: var(--pvn-radius);
    font-weight: 600;
    cursor: pointer;
    color: var(--pvn-text);
    transition: var(--pvn-transition);
}
.valor-btn.active { border-color: var(--pvn-primary); color: var(--pvn-primary); background: rgba(45,200,158,0.06); }
.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--pvn-border);
    border-radius: var(--pvn-radius);
    font-size: 1rem;
    font-family: var(--pvn-font-main);
    color: var(--pvn-text);
    transition: var(--pvn-transition);
    margin-top: 0.75rem;
}
.form-label + .form-input { margin-top: 0; }
.form-input:focus { outline: none; border-color: var(--pvn-primary); box-shadow: 0 0 0 3px rgba(45,200,158,0.15); }
.doacao-submit { width: 100%; justify-content: center; margin-top: 1.5rem; font-size: 1.05rem; padding: 1rem; }
.doacao-secure { text-align: center; font-size: 0.82rem; color: var(--pvn-text-light); margin: 1rem 0 0; }

/* Outras Formas de Ajudar */
.outras-formas-section { padding: 6rem 0; background: var(--pvn-bg-light); }
.outras-formas-inner {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.outras-formas-text > p { color: var(--pvn-text-light); margin-bottom: 1.5rem; }
.outras-lista { display: grid; gap: 0.85rem; margin-bottom: 2rem; }
.outras-lista li { display: flex; align-items: center; gap: 0.75rem; color: var(--pvn-text); font-size: 1rem; }
.outras-lista svg { width: 22px; height: 22px; fill: none; stroke: var(--pvn-primary); stroke-width: 2; flex-shrink: 0; }
.entrega-box {
    background: #EEFBF6;
    border-left: 4px solid var(--pvn-primary);
    border-radius: var(--pvn-radius);
    padding: 1.25rem 1.5rem;
    color: var(--pvn-text);
    font-size: 0.95rem;
    line-height: 1.7;
}
.entrega-box strong { color: var(--pvn-primary-dark); }
.outras-formas-img img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--pvn-radius-lg); box-shadow: var(--pvn-shadow-lg); }

/* Benefícios Fiscais */
.beneficios-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--pvn-primary) 0%, var(--pvn-primary-dark) 100%);
}
.beneficios-inner { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.beneficios-inner > h2 { color: #fff; font-size: 2rem; margin-bottom: 0.5rem; }
.beneficios-inner > p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.beneficios-lista {
    background: rgba(255,255,255,0.12);
    border-radius: var(--pvn-radius-lg);
    padding: 2rem;
    display: grid;
    gap: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
}
.beneficio-item { display: flex; align-items: flex-start; gap: 0.75rem; color: #fff; font-size: 1rem; line-height: 1.5; }
.beneficio-item svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.beneficios-nota { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; }

/* Transparência */
.transparencia-section { padding: 6rem 0; background: var(--pvn-bg-light); }
.transparencia-inner { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.transparencia-inner > p { color: var(--pvn-text-light); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.75rem; }
.cnpj-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #EEFBF6;
    color: var(--pvn-primary-dark);
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
}
.cnpj-badge svg { width: 20px; height: 20px; fill: none; stroke: var(--pvn-primary); stroke-width: 2; }

/* Responsivo — Doe Agora */
@media (max-width: 900px) {
    .impacto-grid { grid-template-columns: 1fr; }
    .como-doar-grid { grid-template-columns: 1fr; }
    .outras-formas-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .outras-formas-img { order: -1; }
}
@media (max-width: 560px) {
    .valor-grid { grid-template-columns: 1fr 1fr; }
    .doacao-form-card { padding: 1.5rem; }
}

/* =============================================
   PÁGINA CONTATO
   ============================================= */
.pvn-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Como Nos Encontrar */
.encontrar-section { padding: 6rem 0; background: var(--pvn-white); }
.encontrar-header { max-width: var(--pvn-max-width); margin: 0 auto 3rem; padding: 0 1.5rem; }
.encontrar-grid {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.encontrar-card {
    background: var(--pvn-white);
    border-radius: var(--pvn-radius-lg);
    overflow: hidden;
    box-shadow: var(--pvn-shadow);
}
.encontrar-head { padding: 1.75rem 1.5rem; color: #fff; }
.encontrar-head svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 2; margin-bottom: 0.6rem; }
.encontrar-head h3 { color: #fff; font-size: 1.2rem; margin: 0; }
.encontrar-head--end   { background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%); }
.encontrar-head--tel   { background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%); }
.encontrar-head--email { background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%); }
.encontrar-head--hora  { background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%); }
.encontrar-body { padding: 1.5rem; color: var(--pvn-text); line-height: 1.7; font-size: 0.95rem; word-break: break-word; }

/* Formulário + sidebar */
.contato-form-section { padding: 5rem 0; background: var(--pvn-bg-light); }
.contato-form-inner {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.contato-form-main {
    background: var(--pvn-white);
    border-radius: var(--pvn-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--pvn-shadow);
}
.contato-form-main > h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.contato-form-main > p { color: var(--pvn-text-light); margin-bottom: 1.5rem; }
.contato-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contato-form .form-field { margin-bottom: 1.1rem; }
.contato-form label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--pvn-dark); margin-bottom: 0.5rem; }
.contato-form .form-input { margin-top: 0; }
.contato-form textarea.form-input { resize: vertical; min-height: 130px; }
.contato-submit { width: 100%; justify-content: center; margin-top: 0.5rem; padding: 1rem; }
.contato-submit svg { fill: none; stroke: #fff; stroke-width: 2; }
.contato-secure { text-align: center; font-size: 0.85rem; color: var(--pvn-text-light); margin: 1rem 0 0; }

.form-alert { padding: 1rem 1.25rem; border-radius: var(--pvn-radius); margin-bottom: 1.5rem; font-weight: 500; }
.form-alert--ok { background: #EAF7F1; color: #15765C; border: 1px solid #9FE1CB; }
.form-alert--erro { background: #FCEBEB; color: #A32D2D; border: 1px solid #F09595; }

/* Sidebar */
.contato-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-social {
    background: linear-gradient(135deg, #EEFBF6 0%, #F4FBF8 100%);
    border-radius: var(--pvn-radius-lg);
    padding: 1.75rem;
}
.sidebar-social h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.sidebar-social > p { color: var(--pvn-text-light); font-size: 0.9rem; margin-bottom: 1.25rem; }
.social-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: var(--pvn-white);
    border-radius: var(--pvn-radius);
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
    color: var(--pvn-text);
    font-size: 0.9rem;
    transition: var(--pvn-transition);
}
.social-row:hover { transform: translateX(4px); box-shadow: var(--pvn-shadow); color: var(--pvn-text); }
.social-row strong { color: var(--pvn-dark); }
.social-row-icon {
    width: 42px; height: 42px; border-radius: var(--pvn-radius);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.social-row-icon svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; }
.social-fb { background: #1877F2; }
.social-ig { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.social-wa { background: #25D366; }

.sidebar-ajudar {
    background: linear-gradient(135deg, var(--pvn-primary) 0%, var(--pvn-primary-dark) 100%);
    border-radius: var(--pvn-radius-lg);
    padding: 1.75rem;
}
.sidebar-ajudar h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.4rem; }
.sidebar-ajudar > p { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin-bottom: 1.25rem; }
.sidebar-ajudar .btn-outline { border-color: rgba(255,255,255,0.7); }

/* Localização */
.localizacao-section { padding: 6rem 0; background: var(--pvn-white); }
.localizacao-header { max-width: var(--pvn-max-width); margin: 0 auto 3rem; padding: 0 1.5rem; }
.localizacao-cards {
    max-width: var(--pvn-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.loc-card {
    background: linear-gradient(135deg, #EEFBF6 0%, #F4FBF8 100%);
    border-radius: var(--pvn-radius-lg);
    padding: 2rem;
    text-align: center;
}
.loc-card-icon {
    width: 56px; height: 56px; margin: 0 auto 1rem;
    border-radius: 50%; background: rgba(45,200,158,0.15);
    display: flex; align-items: center; justify-content: center;
}
.loc-card-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--pvn-primary); stroke-width: 2; }
.loc-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.loc-card p { color: var(--pvn-text-light); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* FAQ */
.faq-section { padding: 6rem 0; background: var(--pvn-bg-light); }
.faq-header { max-width: var(--pvn-max-width); margin: 0 auto 3rem; padding: 0 1.5rem; }
.faq-lista { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--pvn-white); border-radius: var(--pvn-radius-lg); box-shadow: var(--pvn-shadow); overflow: hidden; }
.faq-pergunta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pvn-dark);
    font-family: var(--pvn-font-main);
}
.faq-icone {
    font-size: 1.6rem;
    color: var(--pvn-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item.is-open .faq-icone { transform: rotate(45deg); }
.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-resposta p {
    padding: 0 1.75rem 1.4rem;
    margin: 0;
    color: var(--pvn-text-light);
    line-height: 1.7;
}

/* Responsivo — Contato */
@media (max-width: 1024px) {
    .encontrar-grid { grid-template-columns: 1fr 1fr; }
    .contato-form-inner { grid-template-columns: 1fr; }
    .localizacao-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .encontrar-grid { grid-template-columns: 1fr; }
    .contato-form .form-row { grid-template-columns: 1fr; }
    .contato-form-main { padding: 1.5rem; }
}
