/* ===== Delgamedic — Sitio Web ===== */

:root {
  /* Brand */
  --azul: #455A6F;
  --azul-deep: #2E3F4F;
  --azul-700: #3A4C5F;
  --azul-soft: #6B7E91;
  --crema: #EDEBE4;
  --crema-light: #F5F3EC;
  --crema-deep: #DDD9CE;
  --verde: #1EB980;
  --verde-deep: #169968;
  --verde-soft: #E7F7F0;

  --ink: #1F2A36;
  --ink-soft: #4A5867;
  --muted: #7A8694;
  --line: #D6D2C5;
  --line-on-azul: rgba(237, 235, 228, 0.15);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  --shadow-sm: 0 1px 2px rgba(46, 63, 79, 0.06), 0 2px 8px rgba(46, 63, 79, 0.04);
  --shadow-md: 0 4px 16px rgba(46, 63, 79, 0.08), 0 12px 40px rgba(46, 63, 79, 0.06);
  --shadow-lg: 0 20px 60px rgba(46, 63, 79, 0.15);

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);

  --f-display: "Newsreader", "Source Serif 4", "Tinos", Georgia, serif;
  --f-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--crema-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237, 235, 228, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(214, 210, 197, 0.6);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--azul-deep);
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--azul-deep);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(237, 235, 228, 0.1);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { font-weight: 600; }
.brand-text b { font-weight: 700; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14.5px;
  color: var(--azul-deep);
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a:hover { color: var(--verde-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  transition: transform .15s, box-shadow .15s, background .2s, color .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--azul-deep);
  color: var(--crema-light);
}
.btn-primary:hover { background: #1F2A36; box-shadow: var(--shadow-md); }

.btn-whatsapp {
  background: var(--verde);
  color: white;
}
.btn-whatsapp:hover { background: var(--verde-deep); box-shadow: 0 8px 24px rgba(30, 185, 128, 0.35); }

.btn-ghost {
  background: transparent;
  color: var(--azul-deep);
  border-color: rgba(69, 90, 111, 0.25);
}
.btn-ghost:hover { background: var(--azul-deep); color: var(--crema-light); border-color: var(--azul-deep); }

.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ---------- Section structure ---------- */
section { position: relative; }
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) var(--pad-x);
}
.section-inner.tight { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde-deep);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}
.eyebrow.on-dark { color: #6FE0B5; }
.eyebrow.no-rule::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--azul-deep);
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
h2.section-title { font-size: clamp(34px, 4vw, 54px); }
h3 { font-size: 22px; line-height: 1.25; }
.lede {
  font-size: clamp(17px, 1.3vw, 19.5px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 56px;
}
.section-head.split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: 48px;
}
@media (max-width: 880px) {
  .section-head.split { grid-template-columns: 1fr; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--crema);
  min-height: clamp(560px, 82vh, 820px);
  display: flex;
  flex-direction: column;
}

/* Full-bleed background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

/* Readability scrim — soft overall veil + crema fading in from the left */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(237, 235, 228, 0.97) 0%,
      rgba(237, 235, 228, 0.95) 24%,
      rgba(237, 235, 228, 0.82) 38%,
      rgba(237, 235, 228, 0.45) 54%,
      rgba(237, 235, 228, 0.12) 70%,
      rgba(237, 235, 228, 0) 86%),
    linear-gradient(180deg, rgba(237, 235, 228, 0.35) 0%, rgba(237, 235, 228, 0) 30%),
    linear-gradient(0deg, rgba(46, 63, 79, 0.04) 0%, rgba(46, 63, 79, 0) 30%),
    linear-gradient(rgba(237, 235, 228, 0.16), rgba(237, 235, 228, 0.16));
}

.hero-inner {
  flex: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: clamp(48px, 6vw, 96px) var(--pad-x) clamp(40px, 5vw, 72px);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin-top: 22px;
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--verde-deep);
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  text-wrap: pretty;
}

.hero-bullets {
  margin: 26px 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  list-style: none;
  padding: 0;
  max-width: 520px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}
.check {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--verde-soft);
  color: var(--verde-deep);
  display: grid; place-items: center;
}
.check svg { width: 12px; height: 12px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Floating credential badge over the photo */
.hero-photo-badge {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(20px, 4vw, 40px);
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}
.hero-photo-badge .badge-icon {
  width: 44px; height: 44px;
  background: var(--azul-deep);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--crema);
  flex-shrink: 0;
}
.hero-photo-badge .badge-icon svg { width: 22px; height: 22px; }
.hero-photo-badge .badge-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--azul-deep);
  font-weight: 600;
  line-height: 1.1;
}
.hero-photo-badge .badge-text span {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
}

@media (max-width: 880px) {
  .hero { min-height: 0; }
  .hero-bg img { object-position: 50% 42%; }
  .hero-scrim {
    background:
      linear-gradient(180deg,
        var(--crema) 0%,
        rgba(237, 235, 228, 0.97) 32%,
        rgba(237, 235, 228, 0.82) 48%,
        rgba(237, 235, 228, 0.4) 66%,
        rgba(237, 235, 228, 0.12) 82%,
        rgba(237, 235, 228, 0) 100%);
  }
  .hero-inner {
    align-items: flex-start;
    padding-bottom: clamp(280px, 62vw, 480px);
  }
  .hero-copy { max-width: 100%; }
  .hero-bullets { max-width: 100%; }
  .hero-photo-badge { left: clamp(16px, 4vw, 24px); right: auto; }
}

/* ---------- Hero stats strip ---------- */
.hero-strip {
  border-top: 1px solid rgba(69, 90, 111, 0.15);
  background: rgba(237, 235, 228, 0.6);
  position: relative; z-index: 1;
}
.hero-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.hero-strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-strip-item .num {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--azul-deep);
  font-weight: 600;
  line-height: 1;
}
.hero-strip-item .lbl {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 720px) {
  .hero-strip-inner { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ---------- Trust ---------- */
.trust { background: var(--crema-light); }
.commitments {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 16px;
}
.commitment {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.commitment:last-child { border-right: none; }
.commitment-num {
  font-family: var(--f-display);
  font-size: 13px;
  color: var(--verde-deep);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.commitment h4 {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.22;
  color: var(--azul-deep);
}
@media (max-width: 980px) {
  .commitments { grid-template-columns: 1fr 1fr; }
  .commitment { border-right: 1px solid var(--line); }
  .commitment:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .commitments { grid-template-columns: 1fr; }
  .commitment { border-right: none; border-bottom: 1px solid var(--line); }
  .commitment:last-child { border-bottom: none; }
}

/* ---------- Problems (dark) ---------- */
.problems {
  background: var(--azul-deep);
  color: var(--crema);
  position: relative;
  overflow: hidden;
}
.problems::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 90% 10%, rgba(30, 185, 128, 0.10), transparent 60%),
    radial-gradient(40% 40% at 10% 90%, rgba(237, 235, 228, 0.06), transparent 70%);
  pointer-events: none;
}
.problems h2 { color: var(--crema); }
.problems .lede { color: rgba(237, 235, 228, 0.78); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  padding: 32px 28px;
  background: rgba(237, 235, 228, 0.04);
  border: 1px solid var(--line-on-azul);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s, border-color .2s, transform .2s;
}
.problem-card:hover {
  background: rgba(237, 235, 228, 0.08);
  border-color: rgba(30, 185, 128, 0.4);
  transform: translateY(-2px);
}
.problem-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(30, 185, 128, 0.15);
  color: #6FE0B5;
  display: grid; place-items: center;
}
.problem-icon svg { width: 24px; height: 24px; }
.problem-card h3 {
  color: var(--crema);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}
.problem-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(237, 235, 228, 0.72);
}

/* ---------- Method ---------- */
.method { background: var(--crema); }
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  position: relative;
}
.method-steps::before {
  content: "";
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--azul-soft) 0 4px, transparent 4px 10px);
  z-index: 0;
}
.method-step {
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative; z-index: 1;
}
.method-step:not(:last-child) { border-right: 1px dashed rgba(69, 90, 111, 0.2); }
.method-circle {
  width: 72px; height: 72px;
  background: var(--crema-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--azul-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.method-step h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--azul-deep);
  line-height: 1.2;
}
.method-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 980px) {
  .method-steps { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .method-steps::before { display: none; }
}
@media (max-width: 560px) {
  .method-steps { grid-template-columns: 1fr; }
  .method-step { border-right: none !important; padding: 0; }
}

/* ---------- Services ---------- */
.services { background: var(--crema-light); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-card:hover {
  border-color: var(--verde);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--crema);
  color: var(--azul-deep);
  display: grid; place-items: center;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--azul-deep);
}
.service-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.service-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--verde-deep);
  font-weight: 600;
}
.service-card .more::after {
  content: "→";
  transition: transform .2s;
}
.service-card:hover .more::after { transform: translateX(3px); }

/* ---------- Team ---------- */
.team { background: var(--crema); }
.team-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 36px;
  align-items: start;
  margin-top: 16px;
}
@media (max-width: 880px) { .team-layout { grid-template-columns: 1fr; gap: 24px; } }

.team-figure {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #E8E4D5 0%, #DDD9CE 100%);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.team-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.team-figure figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(transparent, rgba(46, 63, 79, 0.35) 60%, rgba(46, 63, 79, 0.55));
}
.cap-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--azul-deep);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
a.cap-tag:hover {
  background: var(--azul-deep);
  color: #fff;
  transform: translateY(-2px);
}
.cap-tt {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.cap-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--verde);
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-card-v {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s;
}
.team-card-v:hover {
  border-color: var(--verde);
  transform: translateY(-2px);
}
.team-card-head { display: flex; flex-direction: column; gap: 6px; }
.team-card-v .role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde-deep);
  font-weight: 600;
}
.team-card-v h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--azul-deep);
  line-height: 1.1;
}
.team-card-v .spec {
  margin: 4px 0 0;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}
.team-card-v > p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.team-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.team-creds .chip {
  font-size: 12px;
  padding: 5px 11px;
  background: var(--crema-light);
  border-radius: var(--r-full);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

/* ---------- Results ---------- */
.results { background: var(--crema-light); }
.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 880px) { .results-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Video testimonial */
.video-testimonial { margin: 0; }
.vt-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--azul-deep);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.vt-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vt-overlay {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(31, 42, 54, 0.12) 0%, rgba(31, 42, 54, 0) 28%),
    linear-gradient(0deg, rgba(31, 42, 54, 0.62) 0%, rgba(31, 42, 54, 0.05) 38%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s ease;
}
.vt-overlay.is-hidden { opacity: 0; pointer-events: none; }
.vt-play {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(30, 185, 128, 0.95);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(30, 185, 128, 0.45);
  transition: transform .2s ease, background .2s ease;
}
.vt-overlay:hover .vt-play { transform: scale(1.08); background: var(--verde); }
.vt-play svg { width: 30px; height: 30px; margin-left: 3px; }
.vt-cap {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.vt-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azul-deep);
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.vt-name {
  font-family: var(--f-display);
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
}
.testimonial .quote-mark {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 1;
  color: var(--crema-deep);
}
.testimonial p {
  margin: 0 0 18px;
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--azul-deep);
  font-weight: 400;
  font-style: italic;
}
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .who .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-deep) 100%);
  color: var(--crema);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 14px;
}
.testimonial .who .name { font-weight: 600; font-size: 14.5px; color: var(--azul-deep); }
.testimonial .who .meta { font-size: 12.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { background: var(--crema); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--azul-deep);
  font-weight: 500;
  line-height: 1.25;
}
.faq-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--crema-light);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--azul-deep);
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.faq-item.open .faq-toggle { background: var(--verde); border-color: var(--verde); color: white; transform: rotate(45deg); }
.faq-toggle svg { width: 16px; height: 16px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 0 24px;
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 320px; }

.faq-help {
  background: var(--azul-deep);
  color: var(--crema);
  border-radius: var(--r-xl);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.faq-help h3 {
  color: var(--crema);
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}
.faq-help p {
  margin: 14px 0 22px;
  color: rgba(237, 235, 228, 0.75);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--azul-deep);
  color: var(--crema);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 70% at 85% 50%, rgba(30, 185, 128, 0.18), transparent 65%),
    radial-gradient(35% 50% at 0% 0%, rgba(237, 235, 228, 0.06), transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .final-cta-inner { grid-template-columns: 1fr; } }

.final-cta h2 {
  color: var(--crema);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 500;
  line-height: 1.04;
}
.final-cta h2 em { font-style: italic; color: #6FE0B5; font-weight: 400; }
.final-cta p {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(237, 235, 228, 0.78);
  max-width: 56ch;
}
.final-cta .ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.final-cta .ctas .btn-ghost { color: var(--crema); border-color: rgba(237, 235, 228, 0.3); }
.final-cta .ctas .btn-ghost:hover { background: var(--crema); color: var(--azul-deep); border-color: var(--crema); }

.contact-card {
  background: rgba(237, 235, 228, 0.05);
  border: 1px solid rgba(237, 235, 228, 0.15);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.contact-card h4 {
  color: var(--crema);
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.contact-card .row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(237, 235, 228, 0.12);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(237, 235, 228, 0.85);
}
.contact-card .row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-card .row svg {
  width: 18px; height: 18px;
  color: #6FE0B5;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-card .row strong { display: block; color: var(--crema); font-weight: 600; font-size: 13.5px; margin-bottom: 2px; }
.contact-card .map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #6FE0B5;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.contact-card .map-link svg { width: 15px; height: 15px; margin-top: 0; }
.contact-card .map-link:hover { color: #fff; }

/* ---------- Footer ---------- */
.footer {
  background: #1F2A36;
  color: rgba(237, 235, 228, 0.72);
  padding: 56px var(--pad-x) 32px;
  font-size: 14px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer h5 {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237, 235, 228, 0.55);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer .brand { color: var(--crema); margin-bottom: 16px; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(237, 235, 228, 0.07);
  color: rgba(237, 235, 228, 0.72);
  transition: background .2s, color .2s, transform .2s;
}
.footer-social a:hover {
  background: var(--verde);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social svg { width: 20px; height: 20px; }
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-credit a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity .2s, transform .2s;
}
.footer-credit a:hover { opacity: 1; transform: translateY(-1px); }
.footer-credit img {
  height: 22px;
  width: auto;
  display: block;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a:hover { color: var(--verde); }
.footer-bottom {
  max-width: var(--container);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(237, 235, 228, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(237, 235, 228, 0.5);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--verde);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(30, 185, 128, 0.45);
  z-index: 100;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 40px rgba(30, 185, 128, 0.55); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Responsive nav simplify ---------- */
@media (max-width: 880px) {
  .nav-links { display: none; }
}
