/* ═══════════════════════════════════════════════════════════════
   CLyA Abogados — Stylesheet v2
   Brand Book: Pomelli
   Paleta: Snow White #FFF5F5 · Hay Gold #BA977B · Gunmetal #404040
   Tipografía: Alata (display) · Inter (body)
   Logo: CLyA sobre fondo #FFF5F5 — navy #1B2E4B · oro #BA977B
═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Brand colors — Brand Book Pomelli */
  --c-navy:        #1B2E4B;   /* color principal del logo */
  --c-navy-dark:   #0e1c2f;
  --c-navy-light:  #243e63;
  --c-gold:        #BA977B;   /* Hay Gold — Brand Book */
  --c-gold-dark:   #9a7d62;
  --c-gold-light:  #ccb09a;
  --c-snow:        #FFF5F5;   /* Snow White — Brand Book */
  --c-white:       #FFFFFF;   /* Pure White — Brand Book */
  --c-gunmetal:    #404040;   /* Gunmetal Gray — Brand Book */
  --c-off:         #FFF5F5;   /* alias Snow White */

  /* Grays derivados */
  --c-gray1:       #eee9e5;
  --c-gray2:       #d4cfc9;
  --c-gray3:       #a09d96;
  --c-gray4:       #666260;
  --c-text:        #404040;   /* Gunmetal Gray — Brand Book */

  /* Tipografía — Brand Book */
  --f-display: 'Alata', Georgia, sans-serif;   /* PRIMARY — Brand Book */
  --f-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; /* SECONDARY */
  /* Alias para compatibilidad interna */
  --f-serif: var(--f-display);

  --nav-h:          76px;
  --max-w:          1200px;
  --pad-x:          clamp(20px, 5vw, 60px);
  --pad-section:    clamp(72px, 10vw, 128px);

  --shadow-sm:  0 1px 6px rgba(27,46,75,0.07);
  --shadow-md:  0 4px 24px rgba(27,46,75,0.12);
  --shadow-lg:  0 10px 44px rgba(27,46,75,0.18);

  --ease:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --r-lg:   10px;
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-sans);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--c-gold);
  color: var(--c-navy);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  line-height: 1.18;
  font-weight: 400; /* Alata solo tiene peso regular */
  color: var(--c-navy);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { line-height: 1.72; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-header .eyebrow { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  margin: 0 auto;
  color: var(--c-gray4);
  font-size: 1.05rem;
  max-width: 56ch;
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section { padding: var(--pad-section) 0; }
.section--alt { background: var(--c-snow); }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--f-sans);
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--c-navy);
  color: var(--c-white);
}
.btn--primary:hover {
  background: var(--c-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(27,46,75,0.36);
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-white);
}
.btn--gold:hover {
  background: var(--c-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(186,151,123,0.42);
}

.btn--outline-light {
  border: 2px solid rgba(255,255,255,0.45);
  color: var(--c-white);
}
.btn--outline-light:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
}

.btn--outline-navy {
  border: 2px solid var(--c-navy);
  color: var(--c-navy);
}
.btn--outline-navy:hover {
  background: var(--c-navy);
  color: var(--c-white);
}

.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* ─── NAVIGATION ────────────────────────────────────────────── */
/* Nav clara (Snow White) — permite usar el logo PNG directamente */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 245, 245, 0.97); /* Snow White */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27,46,75,0.1);
  transition: box-shadow var(--ease);
}
.nav--scrolled {
  box-shadow: 0 2px 20px rgba(27,46,75,0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  gap: 24px;
}

/* ─── LOGOTIPO TIPOGRÁFICO ───────────────────────────────────── */
.nav__logo {
  display: block;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
}

.nav__logotype {
  display: flex;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.nav__logotype-mark {
  font-family: var(--f-display);
  font-size: 2.05rem;
  font-weight: 400;
  color: var(--c-navy);
  letter-spacing: 0.07em;
  line-height: 1;
}

.nav__logotype-mark em {
  color: var(--c-gold);
  font-style: normal;
}

.nav__logotype-rule {
  width: 1.5px;
  height: 26px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--c-gold) 25%, var(--c-gold) 75%, transparent 100%);
}

.nav__logotype-sub {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(27,46,75,0.5);
  padding-top: 1px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(27,46,75,0.72);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--c-gold);
  transition: right var(--ease);
}
.nav__link:hover { color: var(--c-navy); }
.nav__link:hover::after { right: 0; }

.nav__cta {
  background: var(--c-navy) !important;
  color: var(--c-white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.86rem;
  transition: var(--ease);
}
.nav__cta:hover {
  background: var(--c-navy-light) !important;
  transform: translateY(-1px);
}
.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-navy); /* navy sobre fondo claro */
  transition: var(--ease);
  border-radius: 2px;
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── MOBILE NAV ────────────────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-navy-dark);
  z-index: 99;
  flex-direction: column;
  padding: 36px var(--pad-x) 40px;
  gap: 0;
  overflow-y: auto;
}
.nav__mobile.is-open { display: flex; }

.nav__mobile-link {
  font-size: 1.2rem;
  font-family: var(--f-display);
  color: var(--c-white);
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--ease);
  display: block;
}
.nav__mobile-link:hover { color: var(--c-gold); }

.nav__mobile-cta {
  margin-top: 28px;
  display: block;
  background: var(--c-gold);
  color: var(--c-white);
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  text-align: center;
  width: 100%;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background-color: #0a1520;
  background-image:
    linear-gradient(148deg, rgba(10,21,32,0.90) 0%, rgba(15,33,55,0.90) 55%, rgba(28,56,88,0.90) 100%),
    url('../../Edificio.jpg');
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, scroll;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg-orbs::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, rgba(186,151,123,0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: orb-drift 10s ease-in-out infinite;
}
.hero__bg-orbs::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 36vw;
  height: 36vw;
  background: radial-gradient(circle, rgba(186,151,123,0.05) 0%, transparent 60%);
  border-radius: 50%;
  animation: orb-drift 13s ease-in-out infinite reverse;
}

.hero__deco {
  position: absolute;
  right: max(40px, 4vw);
  top: 50%;
  transform: translateY(-50%);
  width: min(44vw, 560px);
  opacity: 0.06;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(56px, 9vh, 116px) var(--pad-x);
  width: 100%;
}

.hero__content { max-width: 660px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.hero__eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--c-gold);
}
.hero__eyebrow-text {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.hero__h1 {
  color: var(--c-white);
  margin-bottom: 26px;
}
.hero__h1 em {
  color: var(--c-gold);
  font-style: normal; /* Alata no tiene itálica */
}

.hero__subtitle {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.74;
  margin-bottom: 40px;
  max-width: 52ch;
}

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

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  font-weight: 500;
}
.hero__trust-item svg { color: var(--c-gold); flex-shrink: 0; }

/* ─── SERVICES ──────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray1);
  border-radius: 20px;
  padding: 48px 32px 40px;
  text-align: center;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px rgba(27,46,75,0.07);
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(27,46,75,0.14);
  transform: translateY(-6px);
  border-color: var(--c-gray2);
}

.service-card__icon {
  width: 76px;
  height: 76px;
  background: var(--c-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--c-white);
}

.service-card__title {
  font-family: var(--f-display);
  font-size: 1.0rem;
  font-weight: 400;
  color: var(--c-navy);
  margin-bottom: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-card__title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--c-gold);
  margin: 14px auto 18px;
}

.service-card__desc {
  font-size: 0.91rem;
  color: var(--c-gunmetal);
  line-height: 1.76;
  margin-bottom: 24px;
  flex: 1;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-navy);
  transition: gap var(--ease), color var(--ease);
}
.service-card__cta:hover { gap: 12px; color: var(--c-gold-dark); }

/* ─── WHY CLyA ──────────────────────────────────────────────── */
.why { background: var(--c-navy); }
.why .section-header h2 { color: var(--c-white); }
.why .section-header p { color: rgba(255,255,255,0.6); }
.why .section-header .eyebrow { color: var(--c-gold); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}

.why__item { display: flex; gap: 18px; }

.why__icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(186,151,123,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
}

.why__text h3 {
  font-size: 1rem;
  color: var(--c-white);
  margin-bottom: 8px;
}
.why__text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

.about__photo { position: relative; }

.about__photo-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1f3a63 0%, var(--c-navy) 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.about__photo-frame picture {
  display: contents;
}
.about__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  padding: 40px;
  text-align: center;
}
.about__photo-placeholder svg { opacity: 0.3; }
.about__photo-placeholder span { max-width: 22ch; line-height: 1.5; }

.about__photo-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--c-gold);
  color: var(--c-white);
  padding: 18px 22px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
}
.about__photo-badge strong {
  display: block;
  font-size: 1rem;
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.3;
}
.about__photo-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.82;
}

.about__eyebrow { margin-bottom: 14px; }
.about__h2 { margin-bottom: 22px; }

.about__bio {
  color: var(--c-gray4);
  font-size: 0.98rem;
  line-height: 1.78;
  margin-bottom: 28px;
}

.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.credential-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,46,75,0.05);
  color: var(--c-navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 100px;
  border: 1px solid rgba(27,46,75,0.1);
}
.credential-chip svg { color: var(--c-gold-dark); }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-gray1);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--c-gold);
  margin-bottom: 18px;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--c-gray4);
  line-height: 1.72;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--c-navy-light) 0%, var(--c-navy) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-navy);
  line-height: 1.3;
}
.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--c-gray3);
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--c-gray1);
}
.faq__item:first-child { border-top: 1px solid var(--c-gray1); }

.faq__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--c-navy);
  gap: 16px;
  transition: color var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary:hover { color: var(--c-gold-dark); }

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--c-gray1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  color: var(--c-navy);
}
details[open] .faq__icon {
  background: var(--c-gold);
  color: var(--c-white);
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 0 22px 0;
  color: var(--c-gray4);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ─── CONTACT CTA ───────────────────────────────────────────── */
.contact-cta {
  background: linear-gradient(148deg, var(--c-navy-dark) 0%, var(--c-navy) 100%);
  text-align: center;
}

.contact-cta h2 { color: var(--c-white); margin-bottom: 16px; }
.contact-cta p {
  color: rgba(255,255,255,0.68);
  font-size: 1.08rem;
  margin: 0 auto 40px;
  max-width: 50ch;
}

.contact-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.contact-cta__meta {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.contact-cta__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
}
.contact-cta__meta-item svg { color: var(--c-gold); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--c-navy-dark);
  padding: 68px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

/* Logo footer — versión texto ya que fondo es oscuro */
.footer__brand-name {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.footer__brand-name span { color: var(--c-gold); }
.footer__brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
  display: block;
}
/* Separador estilo logo */
.footer__brand-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__brand-rule::before,
.footer__brand-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.5;
  max-width: 48px;
}

.footer__brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.68;
  margin-bottom: 24px;
  max-width: 30ch;
}

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--ease);
}
.footer__social a:hover {
  background: var(--c-gold);
  color: var(--c-white);
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer__link:hover { color: var(--c-gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── WHATSAPP FLOAT ────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.48);
  transition: var(--ease);
  color: white;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(148deg, var(--c-navy-dark) 0%, var(--c-navy) 100%);
  padding: calc(var(--nav-h) + 60px) 0 76px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(186,151,123,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero__inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { color: var(--c-white); margin-bottom: 18px; }
.page-hero p {
  color: rgba(255,255,255,0.68);
  font-size: 1.08rem;
  margin: 0 auto;
  max-width: 58ch;
  line-height: 1.7;
}

/* ─── SERVICE DETAIL ────────────────────────────────────────── */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.service-detail__content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--c-navy);
  margin-bottom: 18px;
  margin-top: 40px;
  font-weight: 400;
}
.service-detail__content h2:first-child { margin-top: 0; }

.service-detail__content p {
  color: var(--c-gray4);
  font-size: 0.96rem;
  line-height: 1.78;
  margin-bottom: 18px;
}

.service-list { margin: 24px 0; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--c-gray1);
  font-size: 0.94rem;
  color: var(--c-gray4);
  line-height: 1.6;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(186,151,123,0.15);
  border: 2px solid var(--c-gold);
  margin-top: 2px;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.sidebar-card {
  background: var(--c-navy);
  border-radius: var(--r-lg);
  padding: 30px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 12px;
  font-family: var(--f-display);
}
.sidebar-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
  line-height: 1.65;
}

.sidebar-other { background: var(--c-snow); }
.sidebar-other h4 {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gray3);
  margin-bottom: 14px;
}
.sidebar-other ul { display: flex; flex-direction: column; gap: 0; }
.sidebar-other ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--c-gray4);
  padding: 10px 0;
  border-bottom: 1px solid var(--c-gray1);
  transition: color var(--ease);
}
.sidebar-other ul li:last-child a { border-bottom: none; }
.sidebar-other ul li a:hover { color: var(--c-gold-dark); }


/* ─── DETAIL LIST (dos columnas) ────────────────────────────── */
.detail-list {
  border: 1px solid var(--c-gray1);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.detail-list__row {
  display: grid;
  grid-template-columns: minmax(170px, 30%) 1fr;
  border-bottom: 1px solid var(--c-gray1);
}
.detail-list__row:last-child { border-bottom: none; }
.detail-list__label {
  padding: 13px 18px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--c-navy);
  background: var(--c-snow);
  border-right: 1px solid var(--c-gray1);
  display: flex;
  align-items: center;
}
.detail-list__value {
  padding: 13px 18px;
  font-size: 0.88rem;
  color: var(--c-gray4);
  line-height: 1.65;
  display: flex;
  align-items: center;
}
@media (max-width: 560px) {
  .detail-list__row { grid-template-columns: 1fr; }
  .detail-list__label { border-right: none; border-bottom: 1px solid var(--c-gray1); }
}

/* ─── KEYFRAMES ─────────────────────────────────────────────── */
@keyframes orb-drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-18px) scale(1.06); }
}
@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow  { animation: hero-reveal 0.7s 0.10s ease both; }
.hero__h1       { animation: hero-reveal 0.7s 0.25s ease both; }
.hero__subtitle { animation: hero-reveal 0.7s 0.38s ease both; }
.hero__ctas     { animation: hero-reveal 0.7s 0.50s ease both; }
.hero__trust    { animation: hero-reveal 0.7s 0.62s ease both; }

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

.fade-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.70s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.70s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }

  .about__grid { grid-template-columns: 1fr; }
  .about__photo { order: -1; max-width: 380px; }
  .about__photo-badge { bottom: -14px; right: -10px; }

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

  .service-detail__grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 640px) {
  :root { --pad-section: 60px; }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .hero__trust { gap: 14px 24px; }

  .contact-cta__buttons { flex-direction: column; align-items: stretch; }
  .contact-cta__buttons .btn { text-align: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }

  .why__item { flex-direction: column; gap: 12px; }

  .about__photo { max-width: 100%; }
  .about__photo-badge { position: relative; bottom: 0; right: 0; margin-top: 16px; display: inline-block; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left { opacity: 1; transform: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
