/* ============================================================
   Instituto Semear — ONG
   ============================================================ */

:root {
    --primary: #16a34a;
    --primary-hover: #15803d;
    --primary-soft: rgba(22, 163, 74, 0.08);
    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --whatsapp: #25D366;

    --bg: #ffffff;
    --bg-alt: #f7faf5;
    --bg-warm: #fef9f0;
    --bg-dark: #0f1f15;

    --text: #1a2e1f;
    --text-dim: #6b7f70;
    --text-bright: #ffffff;
    --text-light: #b8c8bd;

    --border: #e3ebe5;
    --border-strong: #c9d6cc;
    --border-dark: #2a3d30;

    --font-head: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --radius: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 30px rgba(22, 163, 74, 0.25);

    --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; font-weight: 600; }
h3 { font-size: 1.4rem; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Top bar ---------- */
.top-bar {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 12px 0;
    font-size: 13px;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar strong { color: var(--accent); }
.top-btn {
    padding: 8px 20px;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all var(--t);
}
.top-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}
.logo-text em {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
}
.nav a {
    color: var(--text-dim);
    position: relative;
    padding: 4px 0;
}
.nav a:hover { color: var(--primary); }
.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--t);
}
.nav a:hover::after { width: 100%; }

.menu-toggle { display: none; }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--t);
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}
.btn-block { width: 100%; }
.btn-lg { padding: 17px 36px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}
.pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(2); opacity: 0; }
}

.hero-title {
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.05;
}
.hero-title em {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}
.stat span {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    font-weight: 500;
}

/* ---------- Hero image ---------- */
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.hero-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-card strong {
    display: block;
    font-family: var(--font-head);
    font-size: 16px;
    color: var(--text);
    margin-bottom: 2px;
    font-weight: 600;
}
.hero-card span {
    font-size: 12.5px;
    color: var(--text-dim);
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-header .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.section-header h2 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}
.section-header p {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-top: 12px;
}

/* ---------- Sobre ---------- */
.sobre-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}
.sobre-text .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.sobre-text h2 {
    margin-bottom: 24px;
}
.sobre-text h2 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}
.sobre-text p {
    color: var(--text-dim);
    margin-bottom: 18px;
    font-size: 1.02rem;
    line-height: 1.75;
}
.sobre-text strong { color: var(--text); font-weight: 600; }

.sobre-pilares {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}
.pilar {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.pilar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pilar strong {
    display: block;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.pilar span {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.5;
}

.sobre-image { position: relative; }
.sobre-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.sobre-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: #fff;
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.sobre-badge strong {
    display: block;
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}
.sobre-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    line-height: 1.4;
}

/* ---------- Causas ---------- */
.causas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.causa {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t);
    border: 1px solid var(--border);
}
.causa:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.causa-imagem {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    position: relative;
}
.causa-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}
.causa-content {
    padding: 28px 26px 30px;
}
.causa-content h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 10px;
}
.causa-content p {
    font-size: 14.5px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
}
.progress-bar {
    height: 8px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 12px;
}
.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--text-dim);
    margin-bottom: 20px;
}
.progress-info strong { color: var(--primary); font-weight: 700; }

/* ---------- Impacto ---------- */
.impacto {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a3324 100%);
    color: var(--text-light);
}
.impacto .section-header h2 { color: #fff; }
.impacto .section-header .eyebrow { color: var(--accent); }
.impacto .section-header h2 em { color: var(--accent); }
.impacto .section-header p { color: var(--text-light); }

.impacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}
.impacto-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--t);
}
.impacto-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    transform: translateY(-4px);
}
.impacto-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.impacto-numero {
    display: block;
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.impacto-card > span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 500;
}

.transparencia {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 40px 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.transparencia h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 28px;
    text-align: center;
}
.transparencia-bars {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}
.transparencia-item { }
.transp-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}
.transp-header strong { color: #fff; font-weight: 600; }
.transp-header span { color: var(--accent); font-weight: 700; }
.transp-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
}
.transp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.transparencia-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- Voluntário ---------- */
.voluntario-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.voluntario-text .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.voluntario-text h2 {
    margin-bottom: 20px;
}
.voluntario-text h2 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}
.voluntario-text > p {
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.voluntario-tipos {
    display: grid;
    gap: 18px;
    margin-bottom: 32px;
}
.voluntario-tipo {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--t);
}
.voluntario-tipo:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}
.tipo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.voluntario-tipo strong {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}
.voluntario-tipo span {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
}

.voluntario-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.voluntario-form h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 8px;
}
.voluntario-form > p {
    color: var(--text-dim);
    font-size: 14.5px;
    margin-bottom: 28px;
}

/* ---------- Form ---------- */
.form-field { margin-bottom: 18px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14.5px;
    color: var(--text);
    transition: all var(--t);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-field textarea {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
}

/* ---------- Depoimentos ---------- */
.depoimentos {
    background: var(--bg-warm);
}
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.depoimento {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: all var(--t);
    border: 2px solid transparent;
}
.depoimento:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.depoimento .stars {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}
.depoimento p {
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text);
}
.depoimento strong {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ---------- Como doar ---------- */
.como-doar { background: var(--bg-alt); }
.doar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.doar-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--t);
    position: relative;
}
.doar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.doar-destaque {
    border: 2px solid var(--primary);
    transform: scale(1.03);
}
.doar-destaque:hover { transform: scale(1.03) translateY(-4px); }
.doar-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.doar-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.doar-card h3 {
    font-size: 1.35rem;
    color: var(--text);
    margin-bottom: 12px;
}
.doar-card p {
    font-size: 14.5px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
}
.doar-code {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-alt);
    padding: 10px 14px;
    border-radius: var(--radius);
    border: 1px dashed var(--border-strong);
    margin-bottom: 12px;
}
.doar-code code {
    font-size: 12.5px;
    color: var(--text);
    flex-grow: 1;
    text-align: left;
    font-family: monospace;
    word-break: break-all;
}
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 600;
    transition: all var(--t);
}
.copy-btn:hover { background: var(--primary-hover); }

.doar-cnpj {
    display: block;
    font-size: 11.5px;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

.doar-valores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.doar-valores button {
    padding: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 13.5px;
    font-weight: 600;
    transition: all var(--t);
    border: 1px solid transparent;
}
.doar-valores button:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.doar-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
}
.doar-final h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 32px;
}
.doar-impactos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}
.doar-impactos > div {
    text-align: center;
}
.doar-impactos strong {
    display: block;
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.doar-impactos span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* ---------- CTA Final ---------- */
.cta-final {
    background: var(--bg-warm);
    text-align: center;
}
.cta-inner {
    max-width: 720px;
    margin: 0 auto;
}
.cta-final .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 16px;
}
.cta-final h2 { margin-bottom: 20px; }
.cta-final h2 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}
.cta-final p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 32px;
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-dark);
}
.footer-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    color: var(--text-light);
}
.footer h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-light);
}
.footer a:hover { color: var(--accent); }
.logo-footer .logo-mark {
    background: var(--accent);
    color: var(--bg-dark);
}
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text em { color: var(--text-light); }
.footer-bottom {
    padding: 24px 0;
    font-size: 13px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom a { color: var(--accent); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--t);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

/* ---------- Demo banner ---------- */
.demo-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--bg-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    z-index: 90;
}
.demo-banner a {
    color: var(--accent);
    font-weight: 600;
}
.demo-banner a:hover { color: #fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 991px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .header-actions { display: none; }

    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-image { max-width: 400px; margin: 0 auto; }
    .hero-card { left: 10px; }

    .sobre-grid { grid-template-columns: 1fr; gap: 60px; }
    .sobre-badge { bottom: -20px; right: 20px; padding: 20px 22px; }
    .sobre-badge strong { font-size: 2rem; }

    .causas-grid { grid-template-columns: 1fr; }
    .voluntario-grid { grid-template-columns: 1fr; gap: 50px; }
    .doar-grid { grid-template-columns: 1fr; }
    .doar-destaque { transform: none; }
    .doar-destaque:hover { transform: translateY(-4px); }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 575px) {
    .container { padding: 0 18px; }
    .section { padding: 60px 0; }

    .top-bar-inner { flex-direction: column; text-align: center; gap: 12px; }
    .top-bar p { font-size: 12px; }

    .hero { padding: 50px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { gap: 24px; }
    .stat strong { font-size: 1.6rem; }
    .hero-card { padding: 12px 16px; }
    .hero-card strong { font-size: 14px; }
    .hero-card span { font-size: 11px; }
    .hero-card-icon { width: 36px; height: 36px; }

    .sobre-pilares { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .voluntario-form { padding: 32px 24px; }

    .doar-final { padding: 40px 24px; }
    .doar-valores { grid-template-columns: 1fr 1fr; }

    .impacto-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .impacto-card { padding: 28px 18px; }
    .impacto-numero { font-size: 2rem; }

    .transparencia { padding: 28px 24px; }

    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .demo-banner { bottom: 12px; left: 12px; right: 90px; font-size: 11px; }
    .whatsapp-float { bottom: 12px; right: 12px; width: 52px; height: 52px; }
}