/* =====================================================
   CINDY CON PROPÓSITO — Serene Leadership Design System
   Palette: Cream · Terracotta · Gold-Leaf · Dusty Rose · Deep Earth
   Fonts: Libre Caslon Text (headings) · Manrope (body)
   ===================================================== */

/* ── Design tokens ──────────────────────────────────── */
:root {
  /* Surfaces */
  --surface:              #fbf9f4;
  --cream-surface:        #F9F7F2;
  --surface-container-low:#f5f3ee;
  --surface-container:    #f0eee9;
  --surface-container-high:#eae8e3;
  --surface-variant:      #e4e2dd;
  --inverse-surface:      #30312e;   /* footer bg */

  /* Brand */
  --terracotta:    #8C4E35;
  --primary:       #6f3720;          /* terracotta hover / deep */
  --gold-leaf:     #D4AF37;
  --dusty-rose:    #D2A298;
  --deep-earth:    #4A3728;

  /* Text */
  --on-surface:         #1b1c19;
  --on-surface-variant: #53433e;
  --on-background:      #1b1c19;
  --outline:            #86736d;
  --outline-variant:    #d8c2ba;
  --inverse-on-surface: #f2f1ec;

  /* Fonts */
  --font-heading: 'Libre Caslon Text', Georgia, serif;
  --font-body:    'Manrope', Arial, sans-serif;

  /* Radii (reference uses small radii, not 999px) */
  --radius-sm:  0.25rem;
  --radius:     0.5rem;    /* buttons, inputs */
  --radius-xl:  1.5rem;    /* image frames, cards */
  --radius-full: 9999px;   /* pills, circles */

  /* Spacing */
  --container: 1200px;
  --gutter:    24px;
  --section-gap: 80px;

  /* Ambient shadow — very low opacity terracotta tint */
  --shadow-ambient: 0 10px 30px -10px rgba(140,78,53,.05);
  --shadow-md:      0 4px 20px rgba(140,78,53,.08);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background-color: var(--cream-surface);
  color: var(--deep-earth);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--deep-earth);
  line-height: 1.25;
}

/* Display / hero title */
.text-display {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.02em;
}

/* Section headlines */
.text-headline {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  line-height: 1.25;
}

/* Card / component titles */
.text-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

/* Body large — intro paragraphs */
.text-body-lg {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
  color: var(--on-surface-variant);
}

/* Body default */
.text-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--on-surface-variant);
}

/* Label caps */
.text-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-gap) var(--gutter); }

.text-center { text-align: center; }

/* Gold hairline divider */
.gold-line {
  width: 64px;
  height: 1px;
  background: var(--gold-leaf);
  border: none;
  margin: 16px auto 0;
  display: block;
}
.gold-line--left { margin-left: 0; }

/* ── Ambient shadow helper ──────────────────────────── */
.ambient-shadow { box-shadow: var(--shadow-ambient); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
  white-space: nowrap;
  text-decoration: none;
}

/* Primary — filled terracotta */
.btn--primary {
  background: var(--terracotta);
  color: #ffffff;
  border-color: var(--terracotta);
  box-shadow: var(--shadow-ambient);
}
.btn--primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Secondary — gold outline */
.btn--secondary {
  background: transparent;
  color: var(--deep-earth);
  border-color: var(--gold-leaf);
}
.btn--secondary:hover {
  background: rgba(212,175,55,.1);
}

/* WhatsApp */
.btn--whatsapp {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
}
.btn--whatsapp:hover { background: #1da851; border-color: #1da851; }

/* Small button variant */
.btn--sm {
  font-size: 16px;
  padding: 10px 20px;
}

/* ── NAV ────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════
   NAV — TWO VERSIONS
   Active version is applied directly to .nav.
   To switch, change the background/border/color values below
   or apply .nav--v1 / .nav--v2 via JS/HTML class on <nav>.
   ══════════════════════════════════════════════════════

   VERSION A  "Warm Amber Gold"
   ─────────────────────────────
   background : rgba(212,175,55,.95)   ← gold-leaf solid
   border-bottom : 1px solid rgba(140,78,53,.2)  ← terracotta hairline
   Logo / links  : var(--deep-earth)  #4A3728
   Active link underline : var(--terracotta) #8C4E35
   Burger bars   : var(--deep-earth)
   CTA button    : btn--primary  (terracotta on gold — high contrast ✓)
   Mobile menu bg: #D4AF37

   VERSION B  "Deep Earth with Gold Line"
   ─────────────────────────────
   background : rgba(74,55,40,.97)     ← deep-earth dark
   border-bottom : 2px solid rgba(212,175,55,.55)  ← prominent gold line
   Logo / links  : var(--cream-surface) #F9F7F2
   Active link   : var(--gold-leaf)  #D4AF37
   Burger bars   : var(--cream-surface)
   CTA button    : btn--gold  (gold on dark — high contrast ✓)
   Mobile menu bg: #30312e (inverse-surface)

   CURRENTLY ACTIVE → VERSION A
   ══════════════════════════════════════════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background .3s, border-color .3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* ── Dusty Rose Blush ── */
  background: #D2A298;
  border-bottom: 1px solid rgba(111,55,32,.15);
}

/* Modifier classes — add to <nav> element to pick a version */
.nav--v1 {
  background: rgba(212,175,55,.95) !important;
  border-bottom: 1px solid rgba(140,78,53,.2) !important;
}
.nav--v2 {
  background: rgba(74,55,40,.97) !important;
  border-bottom: 2px solid rgba(212,175,55,.55) !important;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
}

/* ── Logo ── */
.nav__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--deep-earth);
}

/* ── Links ── */
.nav__links {
  display: none;
  align-items: center;
  gap: 24px;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  transition: color .2s;
  color: var(--deep-earth);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--primary);
}

.nav__links a.active {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

/* ── Nav CTA button — terracotta on both versions ── */
.nav__cta-desktop {
  background: var(--terracotta) !important;
  color: #ffffff !important;
  border-color: var(--terracotta) !important;
}
.nav__cta-desktop:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* ── Burger ── */
.nav__burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  border-radius: 2px;
  transition: .3s;
  background: var(--deep-earth);
}

.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: #D2A298;
  border-bottom: 1px solid rgba(111,55,32,.15);
  padding: 24px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform .3s ease;
  z-index: 49;
}
.nav__mobile.open { transform: translateY(0); }
.nav__mobile a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-earth);
  padding: 12px 0;
  border-bottom: 1px solid rgba(74,55,40,.12);
}
.nav__mobile a:hover { color: var(--primary); }
/* V-B mobile menu overrides */
.nav--v2 ~ .nav__mobile {
  background: var(--inverse-surface);
  border-bottom-color: rgba(212,175,55,.3);
}
.nav--v2 ~ .nav__mobile a { color: rgba(249,247,242,.85); border-bottom-color: rgba(255,255,255,.08); }
.nav--v2 ~ .nav__mobile a:hover { color: var(--primary); }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .nav__cta--mobile { display: none; }
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  padding: var(--section-gap) var(--gutter);
  background: var(--surface);
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* Left: text */
.hero__text { display: flex; flex-direction: column; gap: 24px; }

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(80,69,54,.08);
  border-radius: var(--radius-full);
  align-self: flex-start;
}
.hero__pill .icon-sm {
  width: 16px; height: 16px;
  color: var(--gold-leaf);
  flex-shrink: 0;
}

.hero h1 { color: var(--deep-earth); }

.hero__tagline {
  font-size: 18px;
  line-height: 1.56;
  color: var(--on-surface-variant);
  max-width: 480px;
}

/* Right: image */
.hero__image {
  position: relative;
}
.hero__image-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-ambient);
  border: 1px solid rgba(212,175,55,.2);
  background: var(--surface-container-high);
}
.hero__image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}


/* Image placeholder */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--outline);
  font-size: .75rem;
  text-align: center;
  padding: 24px;
  background: var(--surface-container);
  font-family: var(--font-body);
}

@media (min-width: 992px) {
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .hero__image-frame { aspect-ratio: unset; height: 580px; }
  .hero__quote-card { display: block; }
}

/* ── PILARES ─────────────────────────────────────────── */
.pilares {
  background: var(--surface-container-low);
  padding: var(--section-gap) var(--gutter);
}
.pilares__header {
  text-align: center;
  margin-bottom: 40px;
}
.pilares__header h2 { margin-bottom: 16px; }

.pilares__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.pilar-card {
  background: var(--cream-surface);
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(210,162,152,.3);
  box-shadow: var(--shadow-ambient);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color .2s;
}
.pilar-card:hover { border-color: rgba(140,78,53,.5); }
.pilar-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform .3s;
}
.pilar-card:hover .pilar-card__icon { transform: scale(1.1); }
.pilar-card__icon--terra { background: rgba(140,78,53,.1); }
.pilar-card__icon--gold  { background: rgba(212,175,55,.1); }
.pilar-card__icon svg {
  width: 28px; height: 28px;
}
.pilar-card__icon--terra svg { color: var(--terracotta); }
.pilar-card__icon--gold  svg { color: var(--gold-leaf); }
.pilar-card h3 { font-family: var(--font-body); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.pilar-card p  { font-size: 16px; color: var(--on-surface-variant); margin: 0; }

@media (min-width: 640px) {
  .pilares__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── SOBRE MÍ ────────────────────────────────────────── */
.sobre {
  background: var(--surface);
  padding: var(--section-gap) var(--gutter);
}
.sobre__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.sobre__photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.2);
  box-shadow: var(--shadow-ambient);
  background: var(--surface-container);
  margin: 0 auto;
}
.sobre__photo img { width: 100%; height: 100%; object-fit: cover; }
.sobre__text { display: flex; flex-direction: column; gap: 16px; }
.sobre__text h2 { margin-bottom: 0; }
.sobre__text p { color: var(--on-surface-variant); }
.sobre__firma {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--terracotta);
  margin-top: 4px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--surface-container-high);
  color: var(--on-surface-variant);
  border: 1px solid var(--outline-variant);
}

@media (min-width: 860px) {
  .sobre__inner { grid-template-columns: 420px 1fr; }
  .sobre__photo { max-width: 420px; margin: 0; }
}

/* ── SERVICIOS ───────────────────────────────────────── */
.servicios {
  background: var(--surface-container-low);
  padding: var(--section-gap) var(--gutter);
}
.servicios__header {
  max-width: var(--container);
  margin: 0 auto 40px;
  text-align: center;
}
.servicios__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.servicio-card {
  background: var(--cream-surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(210,162,152,.3);
  padding: 28px 24px;
  box-shadow: var(--shadow-ambient);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color .2s;
}
.servicio-card:hover { border-color: rgba(140,78,53,.4); }
.servicio-card__num {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--terracotta);
  opacity: .25;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 700;
}
.servicio-card__body h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-earth);
  margin-bottom: 6px;
}
.servicio-card__body p { font-size: 15px; color: var(--on-surface-variant); margin: 0; }
.servicio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(140,78,53,.08);
  color: var(--terracotta);
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .servicios__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── LIBRO ───────────────────────────────────────────── */
.libro {
  background: var(--surface);
  padding: var(--section-gap) var(--gutter);
  position: relative;
  overflow: hidden;
}
/* Decorative blob — right side */
.libro__blob {
  display: none;
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: rgba(228,226,221,.3);
  border-radius: 100px 0 0 100px;
  pointer-events: none;
  z-index: 0;
}
.libro__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.libro__cover-wrap {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}
.libro__cover-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.2);
  box-shadow: var(--shadow-md);
  background: transparent;
  line-height: 0;   /* elimina espacio fantasma bajo la imagen */
}
.libro__cover-frame img { width: 100%; height: auto; display: block; }
/* Sueña/Actúa badge */
.libro__badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 88px; height: 88px;
  background: var(--terracotta);
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow-ambient);
  transform: rotate(12deg);
}
.libro__badge .badge-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: italic;
  line-height: 1.1;
}
.libro__badge .badge-sub {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}
.libro__text { display: flex; flex-direction: column; gap: 16px; }
.libro__text h2 { margin-bottom: 0; }

@media (min-width: 860px) {
  .libro__inner { grid-template-columns: 360px 1fr; }
  .libro__blob { display: block; }
  .libro__cover-wrap { max-width: 360px; margin: 0; }
}

/* ── GALERÍA / COMUNIDAD ─────────────────────────────── */
.galeria {
  background: var(--surface-container);
  padding: var(--section-gap) var(--gutter);
}
.galeria__header {
  max-width: var(--container);
  margin: 0 auto 32px;
  text-align: center;
}
.galeria__header h2 { margin-bottom: 16px; }
.galeria__header p { max-width: 600px; margin: 12px auto 0; }

.galeria__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.galeria__item {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-ambient);
}
.galeria__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.galeria__item:hover img { transform: scale(1.05); }
@media (min-width: 640px) {
  .galeria__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ── CONTACTO ────────────────────────────────────────── */
.contacto {
  background: var(--surface-container-low);
  padding: var(--section-gap) var(--gutter);
}
.contacto__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.contacto__text { display: flex; flex-direction: column; gap: 16px; }
.contacto__text h2 { margin-bottom: 0; }
.contacto__text p { color: var(--on-surface-variant); }
.contacto__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.contacto__form-wrap {
  background: var(--cream-surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-ambient);
}
.contacto__form-wrap h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--deep-earth);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface-container-low);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--deep-earth);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-leaf);
  border-bottom-width: 2px;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 12px;
  color: var(--outline);
  text-align: center;
  margin-top: 10px;
}

@media (min-width: 860px) {
  .contacto__inner { grid-template-columns: 1fr 1fr; }
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: #D2A298;
  border-top: 1px solid rgba(111,55,32,.15);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__brand h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--deep-earth);
  margin-bottom: 4px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--primary);
  margin: 0;
}
.footer__links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer__links a {
  font-size: 15px;
  color: var(--deep-earth);
  opacity: .85;
  transition: color .2s, opacity .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer__links a:hover { color: var(--dusty-rose); }
.footer__links svg { width: 15px; opacity: .7; }

@media (min-width: 640px) {
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── Scroll reveal ────────────────
/* ── Social Media Buttons (W3Schools pattern) ────────
   Font Awesome 4.7 + brand colors
   ──────────────────────────────────────────────────── */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 22px;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  color: #ffffff !important;
}
.social-btn:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

/* WhatsApp */
.social-btn--wa  { background: #25D366; }

/* Instagram */
.social-btn--ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

/* Facebook */
.social-btn--fb  { background: #3B5998; }

/* Contacto section — row layout */
.contacto__btns {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
}

/* Footer — keep consistent sizing */
.footer__links { gap: 14px; }
.footer__links .social-btn { width: 42px; height: 42px; font-size: 18px; }
               