:root {
  --bg: #f7f2e8;
  --bg-soft: #fbf8f1;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --surface-dark: #111826;
  --surface-dark-soft: #182234;
  --text: #16202d;
  --text-soft: #5c6673;
  --text-light: rgba(255, 255, 255, 0.82);
  --border: rgba(22, 32, 45, 0.1);
  --gold: #c7a856;
  --gold-strong: #ae8f43;
  --shadow-xl: 0 30px 90px rgba(17, 24, 38, 0.16);
  --shadow-lg: 0 18px 48px rgba(17, 24, 38, 0.12);
  --shadow-md: 0 12px 28px rgba(17, 24, 38, 0.08);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  --container: 1180px;
  --header-offset: 88px;
  --serif: "Lora", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --safe-top: env(safe-area-inset-top, 0);
  --safe-right: env(safe-area-inset-right, 0);
  --safe-bottom: env(safe-area-inset-bottom, 0);
  --safe-left: env(safe-area-inset-left, 0);
}

* {
  box-sizing: border-box;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 168, 86, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(17, 24, 38, 0.1), transparent 22%),
    linear-gradient(180deg, #fbf8f1 0%, #f7f2e8 100%);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.page-glow--one {
  top: -8rem;
  left: -7rem;
  background: rgba(199, 168, 86, 0.35);
}

.page-glow--two {
  right: -8rem;
  top: 18rem;
  background: rgba(17, 24, 38, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  padding-top: calc(1rem + var(--safe-top));
  transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 0.6rem 0;
  background: rgba(247, 242, 232, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(17, 24, 38, 0.07);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__logo-wrap {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
}

.brand__logo {
  width: 2.8rem;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand__eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--text-soft);
}

.brand__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.38rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: transform 0.25s ease;
}

.site-nav__list a:hover,
.site-nav__list a.is-active {
  color: var(--text);
}

.site-nav__list a:hover::after,
.site-nav__list a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.8rem 0.65rem;
  border: 0;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span + span {
  margin-top: 0.32rem;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 4rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--surface-dark);
  background-image: url("../assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  transform: scale(1.02);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 38, 0.72) 0%, rgba(17, 24, 38, 0.48) 50%, rgba(17, 24, 38, 0.82) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content {
  max-width: min(36rem, 100%);
  width: 100%;
  min-width: 0;
  text-align: center;
}

.hero__content .hero__title {
  max-width: none;
  margin-bottom: 0.85rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
}

.hero__content .hero__lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.hero__content .hero__cta {
  margin-top: 0;
  justify-content: center;
  gap: 0.65rem;
  min-width: 0;
}

.hero .btn {
  min-height: 2.85rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  border-radius: 999px;
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.badge,
.section-heading__kicker,
.contact-card__label,
.profile-card__role,
.hero-card__eyebrow,
.floating-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 14px rgba(17, 24, 38, 0.05);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero__title {
  margin: 1rem 0 1rem;
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  line-height: 0.97;
}

.hero__lead {
  max-width: 62ch;
  margin: 0 0 1rem;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
}

.hero__text,
.section-heading__text,
.contact-copy__text,
.about-story p,
.profile-card__body p,
.value-card p,
.specialty-card p,
.faq-item p,
.contact-card p,
.site-footer__text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.hero__cta,
.contact-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.65rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.btn__icon svg {
  display: block;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #fff;
  box-shadow: 0 16px 30px rgba(174, 143, 67, 0.28);
}

.btn--ghost {
  border-color: rgba(22, 32, 45, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__benefits li,
.chip-list span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 4px 12px rgba(17, 24, 38, 0.04);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.hero__visual {
  position: relative;
  min-height: 34rem;
}

.hero-card,
.floating-card,
.metric-card,
.glass-panel,
.profile-card,
.specialty-card,
.value-card,
.contact-card,
.faq-item,
.site-footer__inner {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-card--main {
  position: absolute;
  inset: 2rem 0 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 2.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-xl);
}

.hero-card__logo-box {
  display: grid;
  place-items: center;
  width: 7rem;
  height: 7rem;
  border-radius: 1.8rem;
  background: radial-gradient(circle at top, rgba(199, 168, 86, 0.16), rgba(255, 255, 255, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-card__logo {
  width: 4.6rem;
}

.hero-card__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.25;
}

.floating-card {
  position: absolute;
  width: min(16rem, 72%);
  padding: 1.15rem 1.2rem;
  border-radius: 1.4rem;
  background: rgba(17, 24, 38, 0.88);
  color: #fff;
  box-shadow: var(--shadow-lg);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.5;
}

.floating-card--top {
  top: 0;
  right: 0;
}

.floating-card--bottom {
  right: 2.2rem;
  bottom: 0;
  animation-delay: -2.5s;
}

.hero .trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}

.trust-strip {
  margin-top: 1.5rem;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
  align-items: stretch;
}

.trust-strip__inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--text);
}

/* Hero móvil: CTAs de a dos con jerarquía (WhatsApp destacado) */
@media (max-width: 768px) {
  .hero__cta--mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    max-width: 22rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--safe-left);
    padding-right: var(--safe-right);
    box-sizing: border-box;
  }

  .hero__cta-primary {
    grid-column: 1 / -1;
  }

  .hero__cta-secondary {
    width: auto;
    max-width: none;
  }

  .trust-strip {
    margin-top: 1rem;
  }

  .trust-strip__inner--mobile-pairs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .trust-strip__inner--mobile-pairs span {
    min-height: 2rem;
    padding: 0.35rem 0.5rem;
    font-size: 0.64rem;
  }

  .trust-strip__inner--mobile-pairs span:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero__cta--mobile-grid {
    max-width: 85%;
    width: 100%;
    gap: 0.55rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta-primary {
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero .container.hero__inner {
    padding-left: max(0.75rem, var(--safe-left));
    padding-right: max(0.75rem, var(--safe-right));
    box-sizing: border-box;
  }

  .hero .trust-strip {
    margin-top: 0.85rem;
  }

  .trust-strip__inner--mobile-pairs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
  }

  .trust-strip__inner--mobile-pairs span {
    min-height: 1.9rem;
    padding: 0.3rem 0.45rem;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .trust-strip__inner--mobile-pairs span:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

.section {
  position: relative;
  padding: 3.5rem 0;
  z-index: 1;
}

.section--tight {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.metrics {
  background: linear-gradient(180deg, rgba(247, 242, 232, 0.6) 0%, var(--bg) 100%);
}

.metrics__strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.metrics__item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  text-align: center;
}

.metrics__value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1.1;
}

.metrics__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.35;
}

.metrics__divider {
  width: 1px;
  min-height: 2.5rem;
  background: linear-gradient(180deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
  flex-shrink: 0;
}

.value-grid,
.contact-cards {
  display: grid;
  gap: 0.6rem;
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

/* En nosotros el título y párrafos usan todo el ancho en desktop, sin cortarse */
#nosotros .section-heading {
  max-width: 100%;
}

#nosotros .section-heading__title {
  max-width: 36rem;
}

#nosotros .section-heading__text {
  max-width: 100%;
}

.section-heading__title {
  margin: 0.5rem 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.12;
}

.section-heading--light .section-heading__title,
.section-heading--light .section-heading__text {
  color: var(--text-light);
}

.section-heading--light .section-heading__kicker {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  align-items: stretch;
}

.about-story--full {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.about-layout > .about-story {
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.about-layout .about-story .quote-box {
  margin-top: auto;
}

.about-layout .about-story p,
.about-layout .about-story .chip-list,
.about-layout .about-story .quote-box {
  max-width: 100%;
}

.glass-panel,
.profile-card,
.contact-card,
.value-card,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 18px rgba(17, 24, 38, 0.06);
}

.glass-panel,
.profile-card,
.contact-card,
.value-card,
.faq-item,
.site-footer__inner {
  background: rgba(255, 255, 255, 0.68);
}

.about-story {
  padding: 1rem 1.2rem;
  border-radius: 0.85rem;
}

.about-story h3,
.profile-card h3,
.value-card h3,
.specialty-card h3,
.contact-card__link,
.contact-card__value {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  line-height: 1.35;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.quote-box {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 2px solid var(--gold);
  border-radius: 0 0.65rem 0.65rem 0;
  background: rgba(199, 168, 86, 0.08);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.5;
}

.about-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.profile-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.9rem;
  min-height: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 32, 45, 0.08);
  box-shadow: 0 8px 24px rgba(17, 24, 38, 0.08);
}

.profile-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 280px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(199, 168, 86, 0.08), rgba(17, 24, 38, 0.04));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.profile-card__placeholder {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, rgba(199, 168, 86, 0.18), rgba(199, 168, 86, 0.06));
}

.profile-card__placeholder.is-visible {
  display: flex;
}

.profile-card__body {
  padding: 1.1rem 1.2rem;
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.profile-card__body .profile-card__role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.profile-card__body h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.profile-card__body p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.section--dark {
  background: linear-gradient(180deg, var(--surface-dark), var(--surface-dark-soft));
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.specialty-card {
  position: relative;
  padding: 1rem 1.1rem;
  overflow: hidden;
  border-radius: 0.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.specialty-card::before {
  content: "";
  position: absolute;
  inset: auto -1.5rem -2rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 168, 86, 0.18), transparent 70%);
}

.specialty-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 168, 86, 0.35);
}

.specialty-card p,
.specialty-card__line {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  line-height: 1.5;
}

.specialty-card__index {
  display: inline-flex;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(199, 168, 86, 0.9);
}

.specialty-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(199, 168, 86, 0.18), rgba(255, 255, 255, 0.06));
}

.specialty-card__line {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.process-step {
  padding: 1.5rem 1.35rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 32, 45, 0.08);
  border-left: 3px solid var(--gold);
  box-shadow: 0 6px 20px rgba(17, 24, 38, 0.06);
  min-width: 0;
}

.process-step__num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(199, 168, 86, 0.35);
  margin-bottom: 0.6rem;
}

.process-step__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.process-step__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.section--accent {
  padding-top: 1.25rem;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.value-card {
  padding: 1rem 1.1rem;
  border-radius: 0.7rem;
}

.value-card h3 {
  margin-bottom: 0.35rem;
  color: var(--gold-strong);
  font-weight: 700;
  position: relative;
  padding-left: 0.65rem;
  border-left: 3px solid var(--gold);
}

.value-card p {
  font-size: 0.875rem;
  line-height: 1.5;
}

.faq-layout {
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  padding: 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(22, 32, 45, 0.1);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 14px rgba(17, 24, 38, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(199, 168, 86, 0.35);
  box-shadow: 0 8px 24px rgba(17, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 2.5rem 0.9rem 1rem;
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  flex: 1;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease, background 0.25s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--gold);
  transition: opacity 0.2s ease;
}

.faq-item__icon::before {
  width: 6px;
  height: 2px;
  margin: -1px 0 0 -3px;
}

.faq-item__icon::after {
  width: 2px;
  height: 6px;
  margin: -3px 0 0 -1px;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--gold);
}

.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after {
  background: #fff;
}

.faq-item__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item[open] .faq-item__content {
  max-height: 280px;
}

.faq-item__content p {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.section--contact {
  padding-top: 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.section-heading--contact {
  margin-bottom: 1.25rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.contact-form-wrap {
  padding: 1.25rem 1.35rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(22, 32, 45, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 20px rgba(17, 24, 38, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  min-width: 0;
}

.contact-form-wrap__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.contact-form-wrap__slogan {
  margin: 1rem 0 0;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
}

.contact-card__icon--wa {
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}

.contact-card__icon--mail {
  color: var(--text);
  background: rgba(22, 32, 45, 0.06);
}

.contact-card__icon--mail svg {
  stroke: currentColor;
}

.contact-card__icon--modalidad {
  color: var(--gold);
  background: rgba(199, 168, 86, 0.15);
}

.contact-card__icon--modalidad svg {
  stroke: currentColor;
}

.contact-card__content {
  min-width: 0;
}

.contact-card__label {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

.contact-card__link,
.contact-card__value {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.contact-card__content p {
  margin-top: 0.15rem;
}

.contact-card__link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card__link:hover {
  color: var(--gold-strong);
  text-decoration: underline;
}

.contact-card__value {
  color: var(--text);
}

.contact-card p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

.contact-form__gotcha {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.contact-form {
  text-align: left;
  margin-bottom: 1.25rem;
  position: relative;
}

.contact-form__row {
  margin-bottom: 1rem;
}

.contact-form__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form__input {
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(22, 32, 45, 0.12);
  border-radius: 0.5rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input::placeholder {
  color: var(--text-soft);
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 168, 86, 0.2);
}

.contact-form__textarea {
  min-height: 5rem;
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem 1.25rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(174, 143, 67, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(174, 143, 67, 0.45);
}

.contact-form__submit:active {
  transform: translateY(0);
}

.site-footer {
  position: relative;
  padding: 2.25rem 0 0;
  z-index: 1;
  background: #0d1320;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 0;
  max-width: 56rem;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
}

.site-footer__brand-block {
  min-width: 0;
}

.site-footer__brand {
  margin: 0 0 0.25rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.site-footer__contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.site-footer__contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.site-footer__btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.site-footer__btn-icon {
  display: flex;
  flex-shrink: 0;
}

.site-footer__btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.site-footer__btn--wa:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.site-footer__btn--mail {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.site-footer__btn--mail:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.site-footer__btn--mail .site-footer__btn-icon svg {
  stroke: currentColor;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: right;
}

.site-footer__meta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.site-footer__meta span:not(.site-footer__meta-label) {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__bottom {
  padding: 1rem 0 calc(1.25rem + 3.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom .container,
.site-footer__bottom-inner {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__bottom .container,
.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.site-footer__copy,
.site-footer__credit {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__credit a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__credit a:hover {
  text-decoration: underline;
}

a.whatsapp-float,
.whatsapp-float {
  position: fixed !important;
  right: 0.5rem !important;
  left: auto !important;
  bottom: calc(0.75rem + var(--safe-bottom)) !important;
  z-index: 60;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.65rem !important;
  min-height: 44px;
  width: auto !important;
  max-width: 6.5rem !important;
  min-width: auto !important;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1db954);
  color: #fff;
  font-size: 0.75rem !important;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(29, 185, 84, 0.32);
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transform: none;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  animation: pulse 1.9s infinite;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal="left"] {
  transform: translateX(34px);
}

[data-reveal="right"] {
  transform: translateX(-34px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (max-width: 1120px) {
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-profiles {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-wrap {
    padding: 1.25rem 1.15rem;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .value-card--full-mobile {
    grid-column: 1 / -1;
  }

  .value-card {
    padding: 0.65rem 0.8rem;
  }

  .value-card h3 {
    font-size: 0.92rem;
    margin-bottom: 0.25rem;
  }

  .value-card p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .metrics__strip {
    flex-wrap: wrap;
    gap: 1rem 0;
    padding: 1rem 0;
  }

  .metrics__item {
    flex: 1 1 45%;
    min-width: 120px;
    padding: 0.5rem 0.75rem;
  }

  .metrics__divider {
    display: none;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem 0;
  }

  .site-footer__contact-block {
    align-items: center;
  }

  .site-footer__links {
    justify-content: center;
  }

  .site-footer__meta {
    align-items: center;
    text-align: center;
  }

  .site-footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: var(--safe-left);
    right: var(--safe-right);
    padding: 0 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
  }

  .site-nav__list a {
    padding: 0.95rem 0.5rem;
  }

  .site-nav__list a::after {
    bottom: 0.55rem;
  }

  .hero {
    padding-top: 2.8rem;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .site-nav__list a {
    display: flex;
    align-items: center;
    padding: 1rem 0.5rem;
    min-height: 44px;
  }

  .profile-card__media {
    min-height: 260px;
  }

  .profile-card__body {
    padding: 1rem 1.1rem;
  }

  .profile-card__body p,
  .contact-card p,
  .specialty-card p,
  .value-card p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .about-story,
  .specialty-card,
  .value-card,
  .contact-card {
    padding: 0.8rem 0.95rem;
    gap: 0.65rem;
  }

  .section-heading__title {
    font-size: 1.25rem;
  }

  .section-heading__text {
    font-size: 0.9rem;
  }

  .process-step {
    padding: 1rem 1.1rem;
  }

  .process-step__num {
    font-size: 1.5rem;
  }

  .process-step__title {
    font-size: 0.95rem;
  }

  .process-step__text {
    font-size: 0.82rem;
  }

  .specialties-grid,
  .value-grid {
    flex: 1 1 100%;
  }

  .metrics__item {
    flex: 1 1 42%;
    min-width: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .specialty-card--featured {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand__copy {
    display: none;
  }

  .brand__logo-wrap {
    width: 3.4rem;
    height: 3.4rem;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .hero__title {
    max-width: none;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero .btn {
    min-height: 44px;
  }

  .metrics__strip {
    padding: 0.5rem 0;
    gap: 0.4rem 0.2rem;
  }

  .metrics__item {
    padding: 0.28rem 0.35rem;
  }

  .metrics__value {
    font-size: 1.35rem;
    line-height: 1.1;
  }

  .metrics__label {
    margin-top: 0.15rem;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    line-height: 1.28;
    color: var(--text);
  }

  .section.section--tight {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .metrics.section.section--tight {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .section {
    padding: 2rem 0;
    padding-bottom: calc(2rem + var(--safe-bottom));
  }

  .section-heading {
    margin-bottom: 1.1rem;
  }

  .section-heading__title {
    font-size: 1.15rem;
  }

  .section-heading__text {
    font-size: 0.85rem;
  }

  .about-story,
  .profile-card__body,
  .specialty-card,
  .contact-card,
  .process-step,
  .faq-item {
    padding: 0.75rem 0.9rem;
  }

  .value-card {
    padding: 0.55rem 0.7rem;
  }

  .value-card h3 {
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
  }

  .value-card p {
    font-size: 0.75rem;
    line-height: 1.38;
  }

  .profile-card__media {
    min-height: 240px;
  }

  .profile-card h3,
  .contact-card__link,
  .contact-card__value,
  .specialty-card h3,
  .value-card h3 {
    font-size: 0.95rem;
  }

  .profile-card__body p,
  .contact-card p,
  .specialty-card p,
  .value-card p,
  .process-step__text {
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .process-step__num {
    font-size: 1.35rem;
  }

  .process-step__title {
    font-size: 0.9rem;
  }

  .contact-form-wrap {
    padding: 1rem 0.9rem;
  }

  .contact-form__row {
    margin-bottom: 0.75rem;
  }

  .contact-form__label {
    font-size: 0.8rem;
  }

  .contact-form__input {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .about-profiles {
    gap: 0.65rem;
  }

  .value-grid {
    gap: 0.45rem;
  }

  .section.section--accent {
    padding-top: 0.9rem;
    padding-bottom: 1.25rem;
  }

  .contact-cards {
    gap: 0.6rem;
  }

  .process-grid {
    gap: 0.85rem;
  }

  .btn {
    width: 100%;
    max-width: 100%;
  }

  a.whatsapp-float,
  .whatsapp-float {
    width: auto !important;
    max-width: 6rem !important;
    right: 0.5rem !important;
    left: auto !important;
    padding: 0.5rem 0.6rem !important;
    gap: 0.3rem;
    font-size: 0.7rem !important;
  }

  .hero__cta:not(.hero__cta--mobile-grid),
  .contact-copy__actions {
    flex-direction: column;
  }

  .hero__cta--mobile-grid {
    display: grid;
  }

  .faq-item summary {
    padding: 1rem 2.5rem 1rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .contact-form__submit {
    min-height: 48px;
  }

  .site-footer__bottom {
    padding-bottom: calc(4rem + var(--safe-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
