/* ============================================================
   CLÍNICA ODONTOLÓGICA GALLO — sistema de diseño premium
   Paleta: azul marca (logo) + neutros claros + ámbar (reseñas)
   Tipografía: Newsreader (display serif) + Inter (texto/UI)
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --navy: #0C3B5E;          /* azul profundo */
  --navy-dark: #082A44;
  --blue: #1C6FA6;          /* azul de marca (logo) */
  --blue-soft: #6FA3C4;
  --blue-tint: #E7F0F7;     /* chips / íconos */
  --sky: #F1F6FA;           /* fondo alterno frío */
  --cream: #F8F6F1;         /* fondo cálido alterno */

  --gold: #DDA235;          /* estrellas reseñas */
  --gold-soft: #F0CE8C;

  --ink: #12222E;           /* títulos */
  --text: #3A454D;          /* cuerpo */
  --muted: #6C7681;         /* secundario */
  --line: #E1E8EE;          /* bordes */
  --line-soft: #EDF1F5;
  --white: #ffffff;

  --green: #25D366;         /* WhatsApp */
  --green-dark: #1ebd5b;

  --shadow-sm: 0 2px 10px rgba(12,59,94,0.06);
  --shadow-md: 0 14px 36px -12px rgba(12,59,94,0.18);
  --shadow-lg: 0 26px 60px -20px rgba(12,59,94,0.26);
  --shadow-xl: 0 40px 90px -30px rgba(8,42,68,0.40);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  --container: 1200px;
  --font-display: 'Newsreader', Georgia, serif;
  --font-text: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-text);
  font-size: 16.5px; line-height: 1.68; color: var(--text);
  background: var(--white); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: var(--font-display); color: var(--ink); margin: 0 0 .5em;
  font-weight: 500; letter-spacing: -0.01em; line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.32rem; font-weight: 600; letter-spacing: -0.005em; }
h4 { font-family: var(--font-text); font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }
.section { padding: 116px 0; position: relative; }
.section + .section:not(.section--dark) { border-top: 1px solid var(--line-soft); }
.section--sky { background: var(--sky); }
.section--cream { background: var(--cream); }
.section--dark {
  background: radial-gradient(120% 120% at 0% 0%, var(--blue) 0%, var(--navy) 48%, var(--navy-dark) 100%);
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section__head { max-width: 700px; margin-bottom: 62px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__lead { color: var(--muted); font-size: 1.12rem; margin-top: 14px; line-height: 1.65; }
.section__lead--light { color: rgba(255,255,255,0.82); }

.grid { display: grid; }
.grid--split { grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
@media (max-width: 900px) {
  .grid--split { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 80px 0; }
}

/* ---------- REVEAL + STAGGER ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.stagger.is-visible > * { opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(1){ transition-delay: .04s; }
.stagger.is-visible > *:nth-child(2){ transition-delay: .12s; }
.stagger.is-visible > *:nth-child(3){ transition-delay: .20s; }
.stagger.is-visible > *:nth-child(4){ transition-delay: .28s; }
.stagger.is-visible > *:nth-child(5){ transition-delay: .36s; }
.stagger.is-visible > *:nth-child(6){ transition-delay: .44s; }
.stagger.is-visible > *:nth-child(7){ transition-delay: .52s; }
.stagger.is-visible > *:nth-child(8){ transition-delay: .60s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > *, .hero__inner > * { opacity: 1 !important; transform: none !important; transition: none; }
  *, *::before, *::after { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- EYEBROW ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-text); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--blue); }
.eyebrow--light { color: var(--blue-soft); }
.eyebrow--light::before { background: var(--blue-soft); }
.section__head--center .eyebrow { justify-content: center; }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; font-family: var(--font-text); font-size: 0.96rem; font-weight: 600;
  border-radius: var(--radius-pill); border: 1.5px solid transparent; cursor: pointer;
  transition: all .25s var(--ease); line-height: 1; white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left .65s var(--ease); pointer-events: none;
}
.btn:hover::after { left: 150%; }
.btn--sm { padding: 11px 22px; font-size: .88rem; }
.btn--lg { padding: 17px 36px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

.btn--primary { background: var(--navy); color: var(--white); box-shadow: 0 10px 24px -8px rgba(12,59,94,0.5); }
.btn--primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(12,59,94,0.55); }

.btn--blue { background: var(--blue); color: var(--white); box-shadow: 0 10px 24px -8px rgba(28,111,166,0.55); }
.btn--blue:hover { background: #195f8f; transform: translateY(-2px); }

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

.btn--ghost-light { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.45); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); border-color: var(--white); }

.btn--white { background: var(--white); color: var(--navy); box-shadow: 0 10px 26px rgba(0,0,0,0.16); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,0.22); }

.btn--whatsapp { background: var(--green); color: var(--white); box-shadow: 0 10px 24px -8px rgba(37,211,102,0.55); }
.btn--whatsapp:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,246,241,0.85);
  backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent; transition: all .3s var(--ease);
}
.nav--scrolled { background: rgba(255,255,255,0.96); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 12px 26px; max-width: var(--container); margin: 0 auto; }

.brand { display: flex; align-items: center; text-decoration: none; }
.brand__logo { height: 56px; width: auto; transition: transform .3s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.03); }

.nav__menu { display: flex; gap: 30px; align-items: center; margin-left: auto; margin-right: 30px; }
.nav__menu a { font-size: 0.93rem; font-weight: 500; color: var(--ink); position: relative; padding: 4px 0; transition: color .2s; }
.nav__menu a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav__menu a:hover { color: var(--blue); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav__burger svg { width: 26px; height: 26px; }

@media (max-width: 1040px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__cta .btn--text { display: none; }
}
@media (max-width: 520px) { .brand__logo { height: 48px; } }

.mobile-menu { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--line); padding: 12px 26px 22px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 0; font-size: 1.02rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; }

/* ---------- HERO (foto full-bleed, luminoso) ---------- */
.hero { position: relative; min-height: 760px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; filter: saturate(1.05) brightness(1.05); transform: scale(1.04); animation: heroZoom 22s var(--ease) infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(94deg, rgba(8,34,56,0.80) 0%, rgba(9,40,66,0.52) 34%, rgba(10,46,74,0.16) 66%, rgba(10,46,74,0) 100%),
    linear-gradient(180deg, rgba(8,34,56,0) 58%, rgba(8,34,56,0.32) 100%);
}

.hero__content { position: relative; z-index: 2; width: 100%; }
.hero__inner { max-width: 650px; padding: 124px 0 104px; }
.hero__inner > * { opacity: 0; animation: heroIn .9s var(--ease) forwards; }
.hero__inner > *:nth-child(1){ animation-delay: .06s; }
.hero__inner > *:nth-child(2){ animation-delay: .18s; }
.hero__inner > *:nth-child(3){ animation-delay: .30s; }
.hero__inner > *:nth-child(4){ animation-delay: .42s; }
.hero__inner > *:nth-child(5){ animation-delay: .54s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.26); backdrop-filter: blur(7px);
  padding: 8px 17px; border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 600; color: #fff; margin-bottom: 26px;
}
.hero__stars { color: var(--gold-soft); letter-spacing: 1px; }
.hero__title { font-size: clamp(2.7rem, 5.4vw, 4.6rem); color: #fff; margin: 0 0 22px; letter-spacing: -0.02em; line-height: 1.04; font-weight: 500; text-shadow: 0 2px 30px rgba(8,34,56,0.35); }
.hero__title em { font-style: italic; color: var(--gold-soft); }
.hero__lead { font-size: 1.18rem; color: rgba(255,255,255,0.92); max-width: 540px; margin-bottom: 38px; line-height: 1.62; text-shadow: 0 1px 16px rgba(8,34,56,0.3); }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 14px 34px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); }
.hero__trust li { display: inline-flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.9); }
.hero__trust svg { width: 20px; height: 20px; color: var(--blue-soft); flex-shrink: 0; }

@media (max-width: 640px) {
  .hero { min-height: 640px; }
  .hero__inner { padding: 90px 0 72px; }
  .hero__lead { font-size: 1.06rem; max-width: none; }
  .hero__trust { gap: 10px 22px; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(8,34,56,0.58) 0%, rgba(8,34,56,0.40) 40%, rgba(8,34,56,0.50) 100%);
  }
}

/* ---------- PROOF STRIP (claro) ---------- */
.proof { background: var(--sky); color: var(--navy); padding: 24px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.proof__inner { display: flex; align-items: center; justify-content: center; gap: 16px 50px; flex-wrap: wrap; max-width: var(--container); margin: 0 auto; padding: 0 26px; }
.proof__item { display: inline-flex; align-items: center; gap: 11px; font-size: 0.94rem; font-weight: 600; }
.proof__item svg { width: 20px; height: 20px; color: var(--blue); }
.proof__sep { width: 1px; height: 22px; background: var(--line); }
@media (max-width: 760px) { .proof__sep { display: none; } }

/* ---------- SERVICES ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services { grid-template-columns: 1fr; } }
.service { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service--featured { background: var(--navy); border-color: var(--navy); color: var(--white); }
.service--featured h3 { color: var(--white); }
.service--featured p { color: rgba(255,255,255,0.8); }
.service--featured .service__link { color: var(--blue-soft); }
.service__img { aspect-ratio: 4/3; background: var(--sky); overflow: hidden; }
.service__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service:hover .service__img img { transform: scale(1.07); }
.service__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service h3 { margin: 0 0 10px; line-height: 1.25; }
.service p { font-size: 0.93rem; color: var(--muted); margin-bottom: 18px; flex: 1; }
.service--featured p { color: rgba(255,255,255,0.8); }
.service__link { font-size: 0.86rem; font-weight: 600; color: var(--blue); margin-top: auto; align-self: flex-start; display: inline-flex; gap: 6px; transition: gap .2s ease; }
.service__link:hover { gap: 11px; }

/* ---------- NOSOTROS / INSTALACIONES ---------- */
.nosotros__media { position: relative; }
.nosotros__media > img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.nosotros__frame { position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--blue-soft); border-radius: var(--radius-xl); z-index: -1; }
.nosotros__media > img.nosotros__inset { position: absolute; bottom: -28px; right: -22px; width: 190px; height: 150px; object-fit: cover; border-radius: var(--radius); border: 5px solid var(--white); box-shadow: var(--shadow-lg); z-index: 2; }
@media (max-width: 520px) { .nosotros__media > img.nosotros__inset { display: none; } .nosotros__media > img { height: 420px; } }

.checklist { margin: 30px 0 38px; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 36px; font-size: 1.02rem; color: var(--text); }
.checklist li::before { content: ''; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--blue-tint); border: 1.5px solid var(--blue); }
.checklist li::after { content: ''; position: absolute; left: 7px; top: 9px; width: 8px; height: 4px; border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(-45deg); }

/* ---------- PROCESO ---------- */
.proceso { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 940px) { .proceso { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 520px) { .proceso { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step__num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; color: var(--blue); line-height: 1; opacity: 0.9; }
.step h3 { margin: 16px 0 10px; font-size: 1.2rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.step::after { content: ''; position: absolute; top: 24px; right: -13px; width: 26px; height: 1.5px; background: var(--line); }
@media (min-width: 941px) { .proceso .step:nth-child(4n)::after { display: none; } }
@media (max-width: 940px) { .proceso .step:nth-child(2n)::after { display: none; } }
@media (max-width: 520px) { .step::after { display: none; } }

/* ---------- POR QUÉ (dark) ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 1024px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }
.value { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius-lg); padding: 36px 28px 32px; transition: all .3s var(--ease); }
.value:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.28); transform: translateY(-4px); }
.value__icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; color: var(--blue-soft); margin-bottom: 22px; }
.value__icon svg { width: 26px; height: 26px; }
.value h3 { color: var(--white); font-size: 1.14rem; margin-bottom: 10px; }
.value p { color: rgba(255,255,255,0.76); font-size: 0.94rem; line-height: 1.55; margin: 0; }

/* ---------- TESTIMONIOS ---------- */
.testimonios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 1024px) { .testimonios { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; } }
.testimonio { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 32px; margin: 0; display: flex; flex-direction: column; transition: all .3s var(--ease); }
.testimonio:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.testimonio--featured { background: var(--navy); border-color: var(--navy); }
.testimonio__rating { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.18em; margin-bottom: 18px; line-height: 1; }
.testimonio blockquote { margin: 0 0 24px; padding: 0; font-size: 1.04rem; line-height: 1.66; color: var(--text); font-family: var(--font-display); font-weight: 400; flex: 1; }
.testimonio figcaption strong { display: block; font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.testimonio figcaption span { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.testimonio--featured .testimonio__rating { color: var(--gold-soft); }
.testimonio--featured blockquote { color: rgba(255,255,255,0.95); }
.testimonio--featured figcaption strong { color: var(--white); }
.testimonio--featured figcaption span { color: rgba(255,255,255,0.66); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; font-family: var(--font-display); font-size: 1.18rem; font-weight: 500; color: var(--ink); transition: color .2s; }
.faq__q:hover { color: var(--blue); }
.faq__icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--blue); position: relative; transition: all .3s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; background: var(--blue); border-radius: 2px; top: 50%; left: 50%; transition: all .3s var(--ease); }
.faq__icon::before { width: 11px; height: 1.6px; transform: translate(-50%,-50%); }
.faq__icon::after { width: 1.6px; height: 11px; transform: translate(-50%,-50%); }
.faq__item.open .faq__icon { background: var(--blue); }
.faq__item.open .faq__icon::before, .faq__item.open .faq__icon::after { background: var(--white); }
.faq__item.open .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 4px 26px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ---------- CTA STRIP ---------- */
.cta-strip { background: radial-gradient(120% 140% at 100% 0%, var(--blue) 0%, var(--navy) 52%, var(--navy-dark) 100%); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-strip h2 { color: var(--white); margin: 0 0 8px; }
.cta-strip p { margin: 0; color: rgba(255,255,255,0.85); font-size: 1.08rem; }
.cta-strip__deco { position: absolute; top: -60px; right: -40px; width: 320px; height: 320px; border: 1.5px solid rgba(255,255,255,0.08); border-radius: 50%; }
.cta-strip__deco::after { content: ''; position: absolute; inset: 50px; border: 1.5px solid rgba(255,255,255,0.06); border-radius: 50%; }

/* ---------- CONTACTO ---------- */
.contacto { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: stretch; }
@media (max-width: 940px) { .contacto { grid-template-columns: 1fr; gap: 24px; } }
.contacto__info {
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
  background: radial-gradient(120% 120% at 0% 0%, var(--blue) -12%, var(--navy) 46%, var(--navy-dark) 100%);
  color: rgba(255,255,255,0.82); border-radius: var(--radius-xl); padding: 44px 40px;
}
.info-block { display: flex; gap: 16px; }
.info-block__icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.1); color: var(--blue-soft); display: flex; align-items: center; justify-content: center; }
.info-block__icon svg { width: 22px; height: 22px; }
.info-block h3 { font-family: var(--font-text); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--blue-soft); margin: 4px 0 6px; }
.info-block p { margin: 0; font-size: 1.02rem; color: #fff; line-height: 1.5; }
.info-block a { color: #fff; font-weight: 500; transition: color .2s; }
.info-block a:hover { color: var(--blue-soft); }

.wa-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: var(--radius); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18); transition: all .25s var(--ease);
}
.wa-card:hover { background: rgba(37,211,102,0.18); border-color: rgba(37,211,102,0.5); transform: translateY(-2px); }
.wa-card__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px -4px rgba(37,211,102,0.5); }
.wa-card__icon svg { width: 24px; height: 24px; }
.wa-card__txt { display: flex; flex-direction: column; line-height: 1.3; }
.wa-card__txt span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.wa-card__txt strong { font-size: 1.12rem; color: #fff; }

.map-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 2px; font-weight: 600; font-size: 0.9rem; color: var(--blue-soft); }
.map-link:hover { text-decoration: underline; }

.contacto__form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 42px; box-shadow: var(--shadow-md); }
.contacto__form h3 { margin-bottom: 6px; font-size: 1.5rem; }
.contacto__form > p { color: var(--muted); font-size: 0.96rem; margin-bottom: 26px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 460px) { .field--row { grid-template-columns: 1fr; } }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: var(--font-text); font-size: 0.98rem; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 11px; background: var(--sky);
  outline: none; color: var(--text); transition: border .2s, background .2s, box-shadow .2s; resize: vertical; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(28,111,166,0.12); }
.form__note { font-size: 0.82rem; color: var(--muted); margin: 6px 0 0; text-align: center; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.78); padding: 84px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 56px; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
.footer__logo { background: var(--white); padding: 14px 18px; border-radius: var(--radius); display: inline-block; }
.footer__logo img { height: 60px; width: auto; }
.footer__desc { margin-top: 20px; max-width: 320px; font-size: 0.92rem; line-height: 1.7; }
.footer h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.footer ul li { padding: 5px 0; font-size: 0.93rem; }
.footer a { color: rgba(255,255,255,0.78); transition: color .2s; }
.footer a:hover { color: var(--blue-soft); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.82rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; max-width: var(--container); margin: 0 auto; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer__social a:hover { background: var(--blue); }
.footer__social svg { width: 18px; height: 18px; color: #fff; }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float { position: fixed; bottom: 22px; right: 22px; background: var(--green); color: var(--white); padding: 14px 22px 14px 18px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.92rem; box-shadow: 0 10px 28px rgba(37,211,102,0.42); display: flex; align-items: center; gap: 10px; z-index: 90; transition: all .25s var(--ease); }
.wa-float::before { content: ''; position: absolute; inset: -4px; border-radius: var(--radius-pill); border: 2px solid var(--green); opacity: 0; animation: waPulse 2.4s var(--ease) infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.25); opacity: 0; } }
.wa-float:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37,211,102,0.5); }
.wa-float svg { width: 24px; height: 24px; }
@media (max-width: 580px) { .wa-float__label { display: none; } .wa-float { padding: 15px; } }
