/* ═══════════════════════════════════════════════════════════
   OdontoPets · style.css · 2026
   Nunito · Brand: Teal #79B7B4 / Dark #4E9B97 / Yellow #FDDE58 / Graphite #545454
═══════════════════════════════════════════════════════════ */

:root {
  --teal:       #79B7B4;
  --teal-dk:    #4E9B97;
  --teal-deep:  #3a8480;
  --teal-lt:    #c8e8e7;
  --teal-pale:  #f0f9f9;
  --yellow:     #FDDE58;
  --yellow-dk:  #e8c832;
  --graphite:   #545454;
  --graphite-dk:#2C2C2C;
  --graphite-md:#888;
  --graphite-lt:#ccc;
  --off-white:  #f7f7f5;
  --white:      #ffffff;

  --font: 'Nunito', system-ui, Arial, sans-serif;
  --r: 10px;
  --r-lg: 18px;
  --ease: cubic-bezier(.4,0,.2,1);
  --t: 0.28s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--graphite-dk); background: var(--white); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
figure { margin: 0; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }

/* ─── BUTTONS ─── */
.btn-book {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--yellow); color: var(--graphite-dk);
  font-family: var(--font); font-weight: 800; font-size: .95rem;
  padding: 13px 26px; border-radius: 50px; border: none; cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 3px 14px rgba(253,222,88,.38);
}
.btn-book:hover { background: var(--yellow-dk); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(253,222,88,.45); }
.btn-book--large { font-size: 1.05rem; padding: 15px 32px; }

.btn-watch {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: rgba(255,255,255,.85);
  font-family: var(--font); font-weight: 600; font-size: .95rem;
  padding: 13px 24px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: var(--t);
}
.btn-watch:hover { border-color: white; color: white; background: rgba(255,255,255,.08); }

.btn-teal {
  display: inline-block;
  color: var(--teal-dk); font-weight: 700; font-size: .95rem;
  border-bottom: 2px solid var(--teal-dk);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
}
.btn-teal:hover { color: var(--teal-deep); border-color: var(--teal-deep); }

.btn-insta {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: white; font-family: var(--font); font-weight: 700; font-size: .95rem;
  padding: 12px 26px; border-radius: 50px;
  box-shadow: 0 3px 14px rgba(220,39,67,.3);
  transition: transform var(--t), box-shadow var(--t);
}
.btn-insta:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(220,39,67,.4); }

/* ═══════════════════════════════════════════════════════════  NAVBAR  */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0; transition: background var(--t), box-shadow var(--t);
}
.navbar.scrolled {
  background: white;
  box-shadow: 0 1px 0 rgba(0,0,0,.07), 0 2px 20px rgba(78,155,151,.08);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-size: 1.15rem; color: white; letter-spacing: -.01em; transition: color var(--t); }
.brand-name strong { font-weight: 900; }
.navbar.scrolled .brand-name { color: var(--graphite-dk); }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a:not(.nav-cta) {
  font-weight: 600; font-size: .9rem; color: rgba(255,255,255,.88);
  transition: color var(--t);
}
.nav-menu a:not(.nav-cta):hover { color: var(--yellow); }
.navbar.scrolled .nav-menu a:not(.nav-cta) { color: var(--graphite); }
.navbar.scrolled .nav-menu a:not(.nav-cta):hover { color: var(--teal-dk); }

.nav-cta {
  background: var(--yellow); color: var(--graphite-dk) !important;
  font-weight: 800 !important; font-size: .88rem !important;
  padding: 9px 20px; border-radius: 50px;
  transition: background var(--t), transform var(--t) !important;
}
.nav-cta:hover { background: var(--yellow-dk) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { width: 22px; height: 2px; background: white; border-radius: 2px; display: block; transition: var(--t); }
.navbar.scrolled .nav-toggle span { background: var(--graphite-dk); }

/* ═══════════════════════════════════════════════════════════  HERO  */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--teal-deep) 0%, var(--teal-dk) 45%, var(--teal) 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 96px 60px 64px;
  gap: 48px;
  position: relative; overflow: hidden;
}
/* Geometric accent: top-right circle */
.hero::before {
  content: '';
  position: absolute; top: -140px; right: -100px;
  width: 480px; height: 480px; border-radius: 50%;
  border: 60px solid rgba(255,255,255,.05);
  pointer-events: none;
}
/* Bottom-left arc */
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(253,222,88,.06);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900; line-height: 1.04;
  color: white; margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-headline em {
  font-style: normal;
  color: var(--yellow);
  display: inline-block;
  position: relative;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.82); line-height: 1.7;
  margin-bottom: 36px; max-width: 480px;
}
.hero-sub strong { color: white; font-weight: 800; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-proof {
  display: flex; align-items: center; gap: 22px;
}
.proof-stat { text-align: left; }
.proof-num {
  display: block; font-size: 1.7rem; font-weight: 900;
  color: var(--yellow); line-height: 1; margin-bottom: 2px;
}
.proof-label { font-size: .75rem; color: rgba(255,255,255,.65); font-weight: 600; }
.proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* Hero right visual — logo */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-frame {
  position: relative;
  width: 100%; max-width: 480px;
  aspect-ratio: 1 / 1;
  background: white;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  padding: 56px;
  box-shadow: 0 24px 72px rgba(0,0,0,.18);
}
.hero-logo-frame img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
}
.hero-accent-block {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 130px; height: 130px;
  background: var(--yellow);
  border-radius: var(--r);
  z-index: -1;
}

/* ═══════════════════════════════════════════════════════════  VALUE STRIP  */
.value-strip {
  background: var(--graphite-dk);
  padding: 32px 28px;
}
.value-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.value-strip p {
  font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 600;
  color: rgba(255,255,255,.75); text-align: center; line-height: 1.6;
  max-width: 720px;
}
.value-strip em { font-style: normal; color: var(--yellow); }

/* ═══════════════════════════════════════════════════════════  SERVICES  */
#servicios { background: var(--white); }

.services-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 72px; align-items: start;
}

.services-intro h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 16px; color: var(--graphite-dk);
}
.services-intro h2 em { font-style: normal; color: var(--teal-dk); }
.services-intro > p {
  font-size: .95rem; color: var(--graphite-md); line-height: 1.7; margin-bottom: 28px;
}

.services-list { display: flex; flex-direction: column; }

.svc-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 20px; padding: 28px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: background var(--t);
}
.svc-item:first-child { padding-top: 0; }
.svc-item:last-child { border-bottom: none; }

.svc-item.svc-featured {
  background: var(--teal-pale);
  margin: 0 -20px;
  padding: 28px 20px;
  border-radius: var(--r);
  border-bottom: none;
  margin-bottom: 4px;
}
.svc-item.svc-featured .svc-num { color: var(--teal-dk); }
.svc-item.svc-featured h3 { color: var(--teal-deep); }

.svc-num {
  font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  color: var(--graphite-lt); padding-top: 5px;
}
.svc-body h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--graphite-dk);
  margin-bottom: 8px;
}
.svc-body > p { font-size: .9rem; color: var(--graphite); line-height: 1.65; }

.svc-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px;
}
.svc-tags li {
  font-size: .75rem; font-weight: 700;
  background: white; color: var(--teal-dk);
  border: 1.5px solid var(--teal-lt);
  padding: 4px 12px; border-radius: 50px;
}

/* ═══════════════════════════════════════════════════════════  HOW IT WORKS  */
.how {
  background: linear-gradient(150deg, var(--teal-deep) 0%, var(--teal-dk) 100%);
}

.how-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  color: white; line-height: 1.15;
  margin-bottom: 56px; max-width: 480px;
}
.how-title em { font-style: normal; color: var(--yellow); }

.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
/* Connecting line */
.how-steps::before {
  content: '';
  position: absolute; top: 28px; left: 24px; right: 24px; height: 1px;
  background: rgba(255,255,255,.15); z-index: 0;
}

.how-step {
  padding: 0 24px 0 0;
  position: relative; z-index: 1;
}
.how-step:last-child { padding-right: 0; }

.how-n {
  display: block;
  font-size: .68rem; font-weight: 900; letter-spacing: .1em;
  color: var(--yellow);
  background: var(--teal-deep);
  border: 1.5px solid rgba(253,222,88,.4);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.how-step h3 {
  font-size: .95rem; font-weight: 800; color: white; margin-bottom: 8px;
}
.how-step p { font-size: .85rem; color: rgba(255,255,255,.72); line-height: 1.6; }

.how-cta { margin-top: 52px; }

/* ═══════════════════════════════════════════════════════════  GALLERY  */
.gallery { background: var(--off-white); }

.gallery-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; align-items: end; margin-bottom: 48px;
}
.gallery-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  line-height: 1.15; color: var(--graphite-dk);
}
.gallery-header h2 em { font-style: normal; color: var(--teal-dk); }
.gallery-header p {
  font-size: .95rem; color: var(--graphite-md); line-height: 1.65;
  align-self: end;
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.result-card {
  border-radius: var(--r); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.result-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(78,155,151,.18); }

.result-img-wrap {
  position: relative;
  aspect-ratio: 600 / 1066; overflow: hidden;
  background: var(--teal-pale);
}
.result-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* empty state */
.result-img-wrap.img-empty img { display: none; }
.result-placeholder {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; height: 100%; padding: 20px; text-align: center;
}
.result-img-wrap.img-empty .result-placeholder { display: flex; }
.result-placeholder span { font-size: 2rem; }
.result-placeholder p { font-size: .78rem; color: var(--teal-dk); font-weight: 700; font-family: monospace; }

.result-card figcaption {
  padding: 12px 16px;
  font-size: .88rem; color: var(--graphite-md);
}
.result-species { font-weight: 800; font-size: .85rem; color: var(--teal-dk); }

/* ═══════════════════════════════════════════════════════════  WHY  */
.why { background: var(--white); }

.why-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 80px; align-items: start;
}

.why-stat-block {
  background: var(--teal-dk); border-radius: var(--r-lg);
  padding: 40px 32px; position: sticky; top: 100px;
}
.why-big-num {
  display: block;
  font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900;
  color: var(--yellow); line-height: 1; margin-bottom: 14px;
}
.why-stat-block > p {
  font-size: .9rem; color: rgba(255,255,255,.82);
  line-height: 1.6; margin-bottom: 20px;
}
.why-badge {
  display: inline-block;
  background: rgba(253,222,88,.15); color: var(--yellow);
  font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
}

.why-reasons h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 900;
  line-height: 1.15; color: var(--graphite-dk); margin-bottom: 40px;
}
.why-reasons h2 em { font-style: normal; color: var(--teal-dk); }

.why-dl { display: flex; flex-direction: column; gap: 0; }
.why-row {
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  align-items: start;
  transition: background var(--t);
}
.why-row:last-child { border-bottom: none; }
.why-row:hover { background: var(--teal-pale); margin: 0 -20px; padding: 24px 20px; border-radius: var(--r); border-bottom: none; }
.why-row dt { font-weight: 800; font-size: .95rem; color: var(--graphite-dk); padding-top: 2px; }
.why-row dd { font-size: .92rem; color: var(--graphite); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════  ZONES  */
.zones { background: var(--teal-dk); }

.zones-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  color: white; line-height: 1.15; margin-bottom: 48px;
}
.zones-title em { font-style: normal; color: var(--yellow); }

.zones-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 32px;
}
.zone {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: background var(--t), transform var(--t);
}
.zone:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.zone-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.zone h3 { font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: 10px; }
.zone p { font-size: .88rem; color: rgba(255,255,255,.72); line-height: 1.7; }

.zones-note {
  font-size: .9rem; color: rgba(255,255,255,.65);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════  INSTAGRAM  */
.instagram { background: var(--off-white); }

.insta-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 24px; margin-bottom: 36px; flex-wrap: wrap;
}
.insta-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  line-height: 1.15; color: var(--graphite-dk);
}
.insta-header h2 em { font-style: normal; color: var(--teal-dk); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.insta-post {
  position: relative; overflow: hidden; border-radius: var(--r);
  aspect-ratio: 1 / 1; background: var(--teal-pale);
  display: block;
}
.insta-post img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.insta-post:hover img { transform: scale(1.05); }

/* Empty state */
.insta-post.insta-empty img { display: none; }
.insta-empty-cell {
  display: none;
  align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-size: 1.6rem; color: var(--teal-lt);
}
.insta-post.insta-empty .insta-empty-cell { display: flex; }

.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(78,155,151,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease);
  opacity: 0;
}
.insta-post:hover .insta-overlay { background: rgba(62,132,128,.6); opacity: 1; }

/* ═══════════════════════════════════════════════════════════  CTA BAND  */
.cta-band {
  background: linear-gradient(140deg, var(--teal-deep) 0%, var(--teal-dk) 100%);
  padding: 88px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(253,222,88,.07); pointer-events: none;
}

.cta-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900;
  color: white; line-height: 1.15; margin-bottom: 10px;
}
.cta-text h2 em { font-style: normal; color: var(--yellow); }
.cta-text p { font-size: 1rem; color: rgba(255,255,255,.75); }

.cta-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.cta-contacts {
  display: flex; flex-direction: column; gap: 4px; text-align: right;
}
.cta-contacts span { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════  FOOTER  */
.footer { background: var(--graphite-dk); padding: 64px 0 32px; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 44px;
}
.footer-logo { font-size: 1.3rem; color: var(--teal-lt); margin-bottom: 8px; }
.footer-logo strong { font-weight: 900; color: var(--teal); }
.footer-tagline { font-style: italic; color: var(--teal); font-weight: 600; font-size: .9rem; margin-bottom: 10px; }
.footer-brand p:last-child { font-size: .85rem; color: #666; line-height: 1.7; }

.footer h4 { color: white; font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer ul { display: flex; flex-direction: column; gap: 9px; }
.footer li, .footer a { font-size: .88rem; color: #666; font-weight: 600; transition: color var(--t); }
.footer a:hover { color: var(--teal-lt); }

.footer-bottom {
  border-top: 1px solid #333; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-bottom span { font-size: .82rem; color: #555; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════  WA FLOAT  */
.wa-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.5);
  z-index: 99; transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); }

/* ═══════════════════════════════════════════════════════════  ANIMATIONS  */

/* Fade-in via IntersectionObserver */
.js-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.js-fade.visible {
  opacity: 1; transform: translateY(0);
}

/* Stagger within parent */
.js-fade:nth-child(2) { transition-delay: .08s; }
.js-fade:nth-child(3) { transition-delay: .16s; }
.js-fade:nth-child(4) { transition-delay: .24s; }
.js-fade:nth-child(5) { transition-delay: .32s; }
.js-fade:nth-child(6) { transition-delay: .40s; }

/* ═══════════════════════════════════════════════════════════  QUIENES SOMOS  */

/* Active nav link — teal when on white navbar, inherits white when transparent */
.nav-active { color: var(--teal-dk) !important; font-weight: 800 !important; }
.page-nosotros .navbar .nav-active { color: var(--teal-dk) !important; }

/* Quienes Somos page — navbar always white, no JS needed */
.page-nosotros .navbar {
  background: white;
  box-shadow: 0 1px 0 rgba(0,0,0,.07), 0 2px 20px rgba(78,155,151,.08);
}
.page-nosotros .navbar .brand-name { color: var(--graphite-dk); }
.page-nosotros .navbar .nav-menu a:not(.nav-cta) { color: var(--graphite); }
.page-nosotros .navbar .nav-menu a:not(.nav-cta):hover { color: var(--teal-dk); }
.page-nosotros .navbar .nav-toggle span { background: var(--graphite-dk); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(140deg, var(--teal-deep) 0%, var(--teal-dk) 50%, var(--teal) 100%);
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 50px solid rgba(255,255,255,.05);
  pointer-events: none;
}
.page-hero-content { max-width: 680px; }
.page-hero .hero-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 900;
  line-height: 1.08; color: white; letter-spacing: -.02em; margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--yellow); }
.page-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.82); line-height: 1.7; max-width: 560px;
}
.page-hero-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(253,222,88,0) 100%);
}

/* ── SHARED NOS SECTION ── */
.nos-section { padding: 88px 0; background: var(--white); }
.nos-label {
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--teal); display: block; margin-bottom: 12px;
}

/* ── HISTORIA ── */
.nos-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.nos-story-text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 22px; color: var(--graphite-dk);
}
.nos-story-text h2 em { font-style: normal; color: var(--teal-dk); }
.nos-story-text p {
  font-size: .97rem; color: var(--graphite); line-height: 1.75; margin-bottom: 16px;
}
.nos-story-text p strong { color: var(--graphite-dk); font-weight: 800; }
.nos-story-text p:last-child { margin-bottom: 0; }

.nos-story-visual { display: flex; flex-direction: column; gap: 16px; }

/* Reusable photo wrapper */
.nos-photo-wrap {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; background: var(--teal-pale);
  aspect-ratio: 4 / 3;
}
.nos-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nos-photo-wrap.photo-empty img { display: none; }
.nos-photo-placeholder {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; height: 100%; padding: 28px; text-align: center;
}
.nos-photo-wrap.photo-empty .nos-photo-placeholder { display: flex; }
.nos-photo-placeholder span { font-size: 2.4rem; }
.nos-photo-placeholder p { font-size: .9rem; font-weight: 700; color: var(--teal-dk); line-height: 1.5; }
.nos-photo-placeholder small { font-size: .72rem; color: var(--graphite-md); font-family: monospace; }

.nos-story-stat {
  background: var(--teal-dk); border-radius: var(--r);
  padding: 20px 28px; display: flex; align-items: center; gap: 16px;
}
.nos-story-stat strong {
  font-size: 2.8rem; font-weight: 900; color: var(--yellow); line-height: 1;
}
.nos-story-stat span { font-size: .9rem; color: rgba(255,255,255,.8); font-weight: 600; }

/* ── MISIÓN VISIÓN ── */
.nos-mv {
  background: var(--teal-dk);
  padding: 72px 0;
}
.mv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.mv-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r); padding: 36px 28px;
  transition: background var(--t), transform var(--t);
}
.mv-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.mv-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.mv-card h3 {
  font-size: 1.1rem; font-weight: 900; color: var(--yellow); margin-bottom: 12px;
}
.mv-card p { font-size: .92rem; color: rgba(255,255,255,.82); line-height: 1.7; }

/* ── VALORES ── */
.nos-values { background: var(--off-white); }

.nos-values-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start;
}
.nos-values-intro h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 16px; color: var(--graphite-dk);
}
.nos-values-intro h2 em { font-style: normal; color: var(--teal-dk); }
.nos-values-intro > p {
  font-size: .92rem; color: var(--graphite-md); line-height: 1.7;
}
.nos-values-list { display: flex; flex-direction: column; gap: 0; }

.value-row {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 20px; padding: 24px 0;
  border-bottom: 1px solid #ebebeb;
}
.value-row:last-child { border-bottom: none; }
.value-row:hover { background: white; margin: 0 -16px; padding: 24px 16px; border-radius: var(--r); border-bottom: none; }

.value-num {
  font-size: .68rem; font-weight: 900; letter-spacing: .08em;
  color: var(--teal); padding-top: 4px; text-align: right;
}
.value-row h4 { font-size: 1rem; font-weight: 800; color: var(--graphite-dk); margin-bottom: 6px; }
.value-row p { font-size: .9rem; color: var(--graphite); line-height: 1.65; }

/* ── EQUIPO ── */
.nos-team { background: var(--white); }
.nos-team-header { margin-bottom: 48px; }
.nos-team-header h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 900;
  line-height: 1.15; color: var(--graphite-dk);
}
.nos-team-header h2 em { font-style: normal; color: var(--teal-dk); }

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 36px;
}
.team-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--off-white);
  transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(78,155,151,.15); }

.team-photo-wrap {
  position: relative; aspect-ratio: 3 / 4;
  overflow: hidden; background: var(--teal-pale);
}
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-photo-wrap.photo-empty img { display: none; }
.team-photo-wrap.photo-empty .nos-photo-placeholder { display: flex; }

.team-info { padding: 22px 20px 24px; }
.team-info h4 {
  font-size: 1.05rem; font-weight: 900; color: var(--graphite-dk);
  min-height: 1.5em; margin-bottom: 4px;
}
.team-role { font-size: .82rem; font-weight: 700; color: var(--teal-dk); margin-bottom: 10px; }
.team-bio { font-size: .88rem; color: var(--graphite); line-height: 1.65; }

.team-note {
  font-size: .95rem; color: var(--graphite-md); font-weight: 600; text-align: center;
}
.team-note a { color: var(--teal-dk); font-weight: 800; border-bottom: 2px solid var(--teal-lt); }
.team-note a:hover { color: var(--teal-deep); border-color: var(--teal-dk); }

/* ── LA ODONTOVAN ── */
.nos-van {
  background: var(--graphite-dk); padding: 88px 0;
}
.van-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.van-text .nos-label { color: var(--teal-lt); }
.van-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  color: white; line-height: 1.15; margin-bottom: 18px;
}
.van-text h2 em { font-style: normal; color: var(--yellow); }
.van-text > p { font-size: .97rem; color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 28px; }

.van-features { display: flex; flex-direction: column; gap: 20px; }
.van-features li {
  display: flex; gap: 16px; align-items: flex-start;
}
.van-feat-icon {
  font-size: 1.3rem; width: 42px; height: 42px;
  background: rgba(253,222,88,.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.van-features strong { display: block; font-size: .95rem; font-weight: 800; color: white; margin-bottom: 3px; }
.van-features p { font-size: .87rem; color: rgba(255,255,255,.6); line-height: 1.6; }

.van-layout .nos-photo-wrap { aspect-ratio: 3 / 4; }

@media (max-width: 900px) {
  .nos-story { grid-template-columns: 1fr; gap: 40px; }
  .nos-story-visual { order: -1; }
  .mv-grid { grid-template-columns: 1fr; }
  .nos-values-layout { grid-template-columns: 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .van-layout { grid-template-columns: 1fr; gap: 44px; }
  .van-visual { order: -1; }
}

@media (max-width: 600px) {
  .page-hero { padding: 96px 0 64px; }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
}

/* ═══════════════════════════════════════════════════════════  INSTAGRAM WIDGET  */
/* Behold Instagram widget wrapper */
.behold-wrap {
  width: 100%;
  margin-top: 8px;
}
.behold-wrap behold-widget {
  display: block;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════  RESPONSIVE  */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 100px 40px 60px; }
  .hero-visual { display: none; }
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-stat-block { position: static; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 88px 24px 48px; }
  .hero-headline { font-size: 2.6rem; }

  .nav-menu {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0;
    background: white; flex-direction: column; align-items: flex-start;
    padding: 20px 28px; gap: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 99;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a:not(.nav-cta) { color: var(--graphite) !important; font-size: 1rem; }
  .nav-toggle { display: flex; }

  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }

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

  .zones-grid { grid-template-columns: 1fr; }

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

  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; }
  .cta-contacts { text-align: left; }

  .why-row { grid-template-columns: 1fr; gap: 6px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 500px) {
  .hero-actions { flex-direction: column; }
  .btn-book, .btn-watch { width: 100%; justify-content: center; }
  .how-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
