/* ============================================================
   HACENVIDA — Asociación Centro Vida para el Adulto Mayor
   main.css · Identidad editorial cálida
   ============================================================ */

:root {
  /* Papel cálido */
  --bg: #FAF6EE;
  --bg-2: #F0E9DB;
  --card: #FFFFFF;

  /* Texto */
  --ink: #20302A;
  --ink-soft: #586860;
  --line: #E6DCCB;
  --line-2: #DED2BD;

  /* Verde bosque — marca */
  --green: #186551;
  --green-deep: #0F4537;
  --green-soft: #DCEAE0;

  /* Terracota — acento cálido */
  --accent: #CF6A43;
  --accent-deep: #B14F2C;
  --gold: #E0A23B;
  --sand: #F5E7CD;

  /* Radios */
  --r: 18px;
  --r-lg: 28px;
  --r-sm: 11px;
  --btn-r: 12px;

  /* Sombras (cálidas) */
  --shadow: 0 30px 60px -28px rgba(31,69,55,.36);
  --shadow-sm: 0 14px 32px -18px rgba(31,69,55,.28);
  --shadow-accent: 0 16px 32px -12px rgba(207,106,67,.45);

  /* Tipografías */
  --ff-serif: 'Fraunces', Georgia, serif;
  --ff-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --max: 1200px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--ink); font-family: var(--ff-sans); font-size: 18px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
::selection { background: var(--green); color: #fff; }

/* ----- Tipografía ----- */
h1, h2, h3, h4 { font-family: var(--ff-serif); line-height: 1.08; font-weight: 500; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(40px, 5.4vw, 68px); font-weight: 500; }
h2 { font-size: clamp(30px, 3.9vw, 46px); }
h3 { font-size: clamp(21px, 2.4vw, 27px); }
p { color: var(--ink-soft); }
em { font-style: italic; color: var(--accent-deep); }

/* ----- Layout ----- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section-py { padding: 100px 0; }
.section-bg { background: var(--bg-2); }
.section-green { background: var(--green-deep); color: #fff; }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head p { font-size: 18px; margin-top: 16px; }

/* Etiqueta de sección — marca de hoja */
.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 18px; }
.section-label::before { content: ''; width: 18px; height: 18px; background: var(--accent); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 21c-4-1-8-5-8-11 5 0 9 1 11 5 0-3-1-6-3-9 4 2 7 6 7 11 0 3-2 5-4 5z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 21c-4-1-8-5-8-11 5 0 9 1 11 5 0-3-1-6-3-9 4 2 7 6 7 11 0 3-2 5-4 5z'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; }
.center .section-label { justify-content: center; }
.section-green .section-label { color: var(--gold); }

.eyebrow-line { width: 56px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 22px; }
.center .eyebrow-line { margin-left: auto; margin-right: auto; }

/* ----- Botones (rectángulo redondeado) ----- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: var(--btn-r); font-size: 16px; font-weight: 700; cursor: pointer; border: none; transition: transform .2s, box-shadow .2s, background .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-deep); color: #fff; }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 14px 30px -10px rgba(24,101,81,.5); }
.btn-green:hover { background: var(--green-deep); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-outline:hover { border-color: var(--green); color: var(--green-deep); }
.btn-white { background: #fff; color: var(--green-deep); }
.btn-white:hover { box-shadow: 0 14px 28px rgba(0,0,0,.2); }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,246,238,.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 24px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 50px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 24px; font-size: 15px; font-weight: 600; }
.site-nav a { color: var(--ink-soft); transition: color .2s; padding: 4px 0; position: relative; }
.site-nav a:hover, .site-nav a.active { color: var(--green-deep); }
.site-nav a.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--accent); border-radius: 2px; }
.site-nav .cta { background: var(--green); color: #fff; padding: 11px 22px; border-radius: var(--btn-r); font-weight: 700; box-shadow: 0 10px 22px -8px rgba(24,101,81,.55); transition: transform .2s, background .2s; }
.site-nav .cta:hover { transform: translateY(-2px); background: var(--green-deep); color: #fff; }
.site-nav .cta::after { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.mobile-nav { display: none; flex-direction: column; padding: 18px 40px 26px; border-top: 1px solid var(--line); gap: 2px; background: var(--bg); }
.mobile-nav a { padding: 13px 0; font-size: 17px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav .cta-mobile { margin-top: 16px; display: inline-flex; justify-content: center; background: var(--green); color: #fff; padding: 14px 28px; border-radius: var(--btn-r); font-weight: 700; }
.mobile-nav.open { display: flex; }

/* ============================================================
   HERO — pantalla completa inmersivo
   ============================================================ */
.hero { position: relative; min-height: 88vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slider .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; transform: scale(1.06); }
.hero-slider .slide.active { opacity: 1; transform: scale(1); transition: opacity 1.4s ease, transform 7s ease; }
.hero-slider img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(15,69,55,.92) 0%, rgba(15,69,55,.74) 42%, rgba(15,69,55,.30) 100%), linear-gradient(0deg, rgba(15,69,55,.55), transparent 55%); }
.hero-inner { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 44px; }
.hero-inner .badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); color: #fff; padding: 8px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(4px); }
.hero-inner .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(224,162,59,.3); }
.hero-inner h1 { color: #fff; margin-top: 22px; max-width: 760px; }
.hero-inner h1 .hl { color: var(--gold); font-style: italic; }
.hero-inner .lead { font-size: 19.5px; color: rgba(255,255,255,.9); margin-top: 22px; max-width: 540px; }
.hero-inner .btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-slider-dots { position: absolute; right: 40px; bottom: 150px; z-index: 3; display: flex; flex-direction: column; gap: 9px; }
.hero-slider-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,.45); cursor: pointer; transition: background .3s, transform .3s; padding: 0; }
.hero-slider-dots button.active { background: var(--gold); transform: scale(1.4); }

.hero-stats { position: relative; z-index: 2; background: rgba(15,69,55,.55); border-top: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(6px); }
.hero-stats .container { display: flex; gap: 0; flex-wrap: wrap; }
.hero-stat { flex: 1; min-width: 160px; padding: 26px 28px 26px 0; display: flex; flex-direction: column; gap: 3px; border-right: 1px solid rgba(255,255,255,.14); }
.hero-stat:last-child { border-right: none; }
.hero-stat .n { font-family: var(--ff-serif); font-size: 30px; font-weight: 600; color: var(--gold); }
.hero-stat .l { font-size: 13.5px; color: rgba(255,255,255,.82); }

/* ============================================================
   INTRO / MISIÓN destacada
   ============================================================ */
.statement { max-width: 920px; margin: 0 auto; text-align: center; }
.statement .lead-quote { font-family: var(--ff-serif); font-size: clamp(24px, 3.1vw, 38px); line-height: 1.32; font-weight: 400; color: var(--ink); }
.statement .lead-quote em { color: var(--green); font-style: italic; }
.statement .sign { margin-top: 28px; font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); }

/* ============================================================
   QUIÉNES SOMOS
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.about-media { position: relative; }
.about-media .m-main { width: 100%; height: 520px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.about-media .m-accent { position: absolute; right: -26px; bottom: -28px; width: 200px; height: 150px; object-fit: cover; border-radius: var(--r); border: 7px solid var(--bg); box-shadow: var(--shadow-sm); }
.about-media .m-tag { position: absolute; left: -20px; top: 30px; background: var(--green); color: #fff; border-radius: var(--r-sm); padding: 16px 20px; box-shadow: var(--shadow); max-width: 180px; }
.about-media .m-tag strong { font-family: var(--ff-serif); font-size: 18px; display: block; line-height: 1.15; }
.about-media .m-tag span { font-size: 12.5px; opacity: .9; }
.about-text p.lead-p { font-size: 18.5px; margin-top: 20px; line-height: 1.74; color: var(--ink); }
.about-text p.sub-p { font-size: 16px; margin-top: 16px; line-height: 1.7; color: var(--ink-soft); }
.values { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.value-tag { background: var(--card); border: 1px solid var(--line-2); color: var(--green-deep); padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 700; }

/* ============================================================
   MISIÓN / VISIÓN
   ============================================================ */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
.mv-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px 42px; position: relative; overflow: hidden; transition: box-shadow .3s, transform .3s; }
.mv-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.mv-card.feat { background: var(--green); border-color: var(--green); }
.mv-card.feat h3, .mv-card.feat p { color: #fff; }
.mv-card.feat p { color: rgba(255,255,255,.92); }
.mv-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--green-soft); color: var(--green-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.mv-card.feat .mv-icon { background: rgba(255,255,255,.16); color: #fff; }
.mv-card h3 { font-size: 26px; margin-bottom: 14px; }
.mv-card p { font-size: 16px; line-height: 1.72; color: var(--ink-soft); }
.mv-card .qmark { position: absolute; right: 22px; top: 10px; font-family: var(--ff-serif); font-size: 110px; line-height: 1; color: var(--line); opacity: .6; pointer-events: none; }
.mv-card.feat .qmark { color: rgba(255,255,255,.12); opacity: 1; }

/* ============================================================
   ACTIVIDADES
   ============================================================ */
.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.act-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 34px 30px; display: flex; flex-direction: column; gap: 14px; position: relative; transition: box-shadow .3s, transform .3s, border-color .3s; overflow: hidden; }
.act-card::after { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.act-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.act-card:hover::after { transform: scaleX(1); }
.act-card.amber::after { background: var(--accent); }
.act-num { font-family: var(--ff-serif); font-size: 15px; font-weight: 600; color: var(--line-2); position: absolute; top: 30px; right: 30px; }
.act-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--green-soft); color: var(--green-deep); display: flex; align-items: center; justify-content: center; }
.act-card.amber .act-icon { background: var(--sand); color: var(--accent-deep); }
.act-card h3 { font-size: 22px; font-weight: 600; }
.act-card p { font-size: 15px; line-height: 1.6; }

/* ============================================================
   GALERÍA
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; margin-top: 48px; }
.gallery-item { position: relative; border-radius: var(--r); overflow: hidden; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 16px; background: linear-gradient(to top, rgba(15,69,55,.85), transparent); color: #fff; font-size: 14px; font-weight: 700; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.gallery-item:hover .gallery-cap { opacity: 1; transform: none; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(12,40,32,.95); z-index: 999; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 12px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.14); border: none; color: #fff; font-size: 26px; cursor: pointer; padding: 16px 20px; border-radius: 12px; transition: background .2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.26); }
.lightbox-prev { left: 20px; } .lightbox-next { right: 20px; }

/* ============================================================
   DONACIONES CTA
   ============================================================ */
.donate-box { background: var(--green); color: #fff; border-radius: var(--r-lg); padding: 76px 64px; position: relative; overflow: hidden; }
.donate-box::before { content: ''; position: absolute; right: -90px; top: -90px; width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,.06); }
.donate-box::after { content: ''; position: absolute; left: 40px; bottom: -150px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.05); }
.donate-head { position: relative; max-width: 660px; }
.donate-head h2 { color: #fff; margin-top: 10px; }
.donate-head p { color: rgba(255,255,255,.9); font-size: 18px; margin-top: 16px; }
.donate-ways { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.donate-way { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r); padding: 28px 26px; }
.donate-way .w-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,.16); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.donate-way h3 { font-size: 21px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.donate-way p { font-size: 15px; color: rgba(255,255,255,.88); margin: 0; }
.donate-box .btns { position: relative; margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   DOCUMENTOS
   ============================================================ */
.docs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.doc-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow .3s, transform .3s; }
.doc-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.doc-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--green-soft); color: var(--green-deep); display: flex; align-items: center; justify-content: center; }
.doc-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.32; font-family: var(--ff-sans); }
.doc-card .doc-meta { font-size: 13px; color: var(--ink-soft); margin-top: -6px; }
.doc-card .btn-download { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; padding: 11px 20px; border-radius: var(--btn-r); font-size: 14.5px; font-weight: 700; margin-top: auto; align-self: flex-start; transition: background .2s, transform .2s; }
.doc-card .btn-download:hover { background: var(--green-deep); transform: translateY(-2px); color: #fff; }
.doc-note { margin-top: 38px; background: var(--sand); border-radius: var(--r); padding: 22px 26px; font-size: 15px; color: var(--accent-deep); display: flex; gap: 14px; align-items: flex-start; }
.doc-note svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info .intro { font-size: 17.5px; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { width: 46px; height: 46px; border-radius: 14px; background: var(--green-soft); color: var(--green-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-label { font-weight: 700; color: var(--ink); font-size: 14.5px; display: block; }
.contact-item-value { font-size: 15.5px; color: var(--ink-soft); }
a.contact-item-value:hover { color: var(--green-deep); }
.contact-map { width: 100%; height: 230px; border-radius: var(--r); margin-top: 26px; border: 1px solid var(--line); overflow: hidden; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* Formulario */
.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 26px; font-weight: 600; margin-bottom: 8px; }
.contact-form .form-intro { font-size: 16px; color: var(--ink-soft); margin-bottom: 28px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-size: 14px; font-weight: 700; color: var(--ink); }
.form-group input, .form-group textarea { border: 1.5px solid var(--line-2); background: var(--bg); border-radius: var(--r-sm); padding: 13px 16px; font-size: 16px; color: var(--ink); outline: none; transition: border-color .2s, background .2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; background: var(--accent); color: #fff; border: none; padding: 16px; border-radius: var(--btn-r); font-size: 17px; font-weight: 700; cursor: pointer; box-shadow: var(--shadow-accent); transition: transform .2s, background .2s; }
.form-submit:hover { transform: translateY(-2px); background: var(--accent-deep); }
.form-legal { font-size: 13px; color: var(--ink-soft); text-align: center; margin-top: 14px; }

/* Botones de contacto directo */
.contact-actions { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-actions h3 { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.contact-actions-intro { font-size: 16px; color: var(--ink-soft); margin-bottom: 28px; }
.contact-btns { display: flex; flex-direction: column; gap: 14px; }
.contact-btn { display: flex; align-items: center; gap: 18px; padding: 18px 22px; border-radius: var(--r); font-weight: 700; transition: transform .2s, box-shadow .2s; }
.contact-btn:hover { transform: translateY(-3px); }
.contact-btn-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-btn-text strong { display: block; font-size: 16.5px; margin-bottom: 3px; }
.contact-btn-text small { display: block; font-size: 13.5px; font-weight: 400; opacity: .9; }
.contact-btn-wa { background: #25D366; color: #fff; box-shadow: 0 10px 26px -10px rgba(37,211,102,.6); }
.contact-btn-wa:hover { color: #fff; }
.contact-btn-wa .contact-btn-icon { background: rgba(255,255,255,.2); }
.contact-btn-phone { background: var(--green); color: #fff; box-shadow: 0 10px 26px -10px rgba(24,101,81,.6); }
.contact-btn-phone:hover { background: var(--green-deep); color: #fff; }
.contact-btn-phone .contact-btn-icon { background: rgba(255,255,255,.2); }
.contact-btn-mail { background: var(--card); color: var(--ink); border: 2px solid var(--line-2); }
.contact-btn-mail:hover { border-color: var(--green); color: var(--green-deep); }
.contact-btn-mail .contact-btn-icon { background: var(--green-soft); color: var(--green-deep); }
.contact-schedule { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--ink-soft); }
.contact-schedule svg { flex-shrink: 0; color: var(--green); }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.testimonio-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 34px 30px; display: flex; flex-direction: column; gap: 16px; }
.testimonio-quote { font-family: var(--ff-serif); font-size: 56px; line-height: .5; color: var(--accent); height: 26px; }
.testimonio-text { font-size: 16.5px; color: var(--ink); line-height: 1.6; flex: 1; }
.testimonio-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonio-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.testimonio-name { font-weight: 700; color: var(--ink); font-size: 15px; }
.testimonio-role { font-size: 13px; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-deep); color: #D7E4DC; }
.footer-top { padding: 66px 0 40px; display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 48px; }
.footer-brand .f-word { font-family: var(--ff-serif); font-size: 27px; color: #fff; font-weight: 600; letter-spacing: .02em; display: flex; align-items: center; gap: 10px; }
.footer-brand .f-word::before { content: ''; width: 22px; height: 22px; background: var(--gold); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 21c-4-1-8-5-8-11 5 0 9 1 11 5 0-3-1-6-3-9 4 2 7 6 7 11 0 3-2 5-4 5z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 21c-4-1-8-5-8-11 5 0 9 1 11 5 0-3-1-6-3-9 4 2 7 6 7 11 0 3-2 5-4 5z'/%3E%3C/svg%3E") center/contain no-repeat; }
.footer-brand p { font-size: 14.5px; color: rgba(215,228,220,.72); max-width: 340px; line-height: 1.65; margin-top: 18px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(215,228,220,.85); transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-col h4 { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(215,228,220,.5); margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; font-size: 14.5px; color: rgba(215,228,220,.82); margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(215,228,220,.14); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(215,228,220,.5); }

/* ============================================================
   PAGE HERO (internas)
   ============================================================ */
.page-hero { background: var(--green-deep); color: #fff; padding: 70px 0 64px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; right: -100px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.05); }
.page-hero::after { content: ''; position: absolute; left: -80px; bottom: -150px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.04); }
.page-hero .container { position: relative; }
.page-hero .breadcrumb { display: flex; gap: 8px; font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 18px; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero h1 { color: #fff; margin-bottom: 14px; max-width: 800px; }
.page-hero p { font-size: 18.5px; max-width: 640px; color: rgba(255,255,255,.9); }

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } .hero-slider .slide.active { transform: none; } }

/* ============================================================
   FAB
   ============================================================ */
.fab-stack { position: fixed; bottom: 26px; right: 26px; z-index: 90; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.wa-fab { width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,.5); transition: transform .2s; }
.wa-fab:hover { transform: scale(1.08); }
.phone-fab { width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(24,101,81,.45); transition: transform .2s; }
.phone-fab:hover { transform: scale(1.08); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media { max-width: 560px; }
  .mv-grid { grid-template-columns: 1fr; }
  .act-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 44px; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .hero-slider-dots { bottom: 180px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 82vh; }
  .hero-inner { padding-top: 50px; }
  .hero-veil { background: linear-gradient(180deg, rgba(15,69,55,.75), rgba(15,69,55,.92)); }
  .hero-slider-dots { display: none; }
  .hero-stats .container { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.14); padding: 18px 0; }
  .hero-stat:last-child { border-bottom: none; }
  .act-grid, .docs-grid, .testimonios-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .about-media .m-accent { display: none; }
  .donate-box { padding: 48px 28px; }
  .donate-ways { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .section-py { padding: 70px 0; }
  .fab-stack { bottom: 16px; right: 16px; gap: 10px; }
  .wa-fab { width: 52px; height: 52px; }
  .phone-fab { width: 46px; height: 46px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.wide { grid-column: span 1; }
  .mv-card, .contact-actions { padding: 30px 24px; }
}
