/* =============================================
   VARIABLES
   ============================================= */
:root {
  --cream:        #f4f1ea;
  --cream-dark:   #e9e4d9;
  --sage:         #7e8775;
  --sage-dk:      #606b57;
  --gold:         #b8975a;
  --text:         #282520;
  --text-mid:     #5a564f;
  --white:        #ffffff;

  --f-serif:      'Playfair Display', Georgia, serif;
  --f-sans:       'Raleway', Arial, sans-serif;

  --r-lg:         1.25rem;
  --r-pill:       50rem;

  --py:           5.5rem;
  --px:           clamp(1.5rem, 5vw, 5rem);

  --ease:         .28s ease;
  --shadow:       0 2px 24px rgba(28,25,18,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  background: var(--cream);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
p   { color: var(--text-mid); }

.eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .6rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1.6rem;
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--ease);
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.btn--light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.btn--light:hover { background: rgba(255,255,255,.26); }

.btn--sage  { background: var(--sage-dk); color: #fff; }
.btn--sage:hover { background: var(--sage); }

.btn--outline { background: transparent; color: var(--sage-dk); border: 1.5px solid var(--sage-dk); }
.btn--outline:hover { background: var(--sage-dk); color: #fff; }

.btn--sm  { font-size: .72rem; padding: .65rem 1.3rem; }
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   NAV  — réplica exacta del nav original
   ============================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}

.nav__bar {
  margin: 0 2rem;
  padding: .85rem 2rem;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(10px);
  border-radius: 0 0 1rem 1rem;
  transition: box-shadow .28s ease;
}

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-color { height: 2rem; width: auto; }
.nav__logo-white { display: none; }

.nav__links {
  display: flex;
  gap: 2.2rem;
  margin-left: auto;
  margin-right: 2rem;
}
.nav__links a {
  font-family: 'Roboto', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #282520;
  opacity: .75;
  transition: opacity .28s ease;
}
.nav__links a:hover { opacity: 1; }

.nav__atencion {
  font-family: 'Roboto', sans-serif;
  font-size: .68rem;
  font-weight: 300;
  color: #5a564f;
  letter-spacing: .04em;
  white-space: nowrap;
  margin-right: 1.25rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 1.5px solid #282520;
  border-radius: .35rem;
  padding: .4rem .5rem;
  cursor: pointer;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #282520;
}
.nav.scrolled .nav__hamburger span { background: var(--text); }
.nav.scrolled .nav__hamburger { border-color: rgba(0,0,0,.15); background: transparent; }

/* =============================================
   HERO  — video como en el original
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__video-wrap { position: absolute; inset: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,rgba(10,8,5,.42) 0%,rgba(10,8,5,.55) 60%,rgba(10,8,5,.38) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem var(--px);
  max-width: 760px;
}
.hero__h1 {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.1rem;
  letter-spacing: -.01em;
}
.hero__h1 em { font-style: italic; }
.hero__sub {
  font-family: var(--f-sans);
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  letter-spacing: .06em;
  margin-bottom: 2.2rem;
}

/* =============================================
   BANNER
   ============================================= */
.banner { background: var(--sage); padding: 3.5rem var(--px); }
.banner__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.banner h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: .9rem;
}
.banner p { color: rgba(255,255,255,.85); font-size: .92rem; line-height: 1.8; }

/* =============================================
   QUÉ ES
   ============================================= */
.que-es { padding: var(--py) var(--px); background: var(--cream); }
.que-es__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.que-es__img-ph {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.que-es__img-ph span {
  font-family: var(--f-sans);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: .5;
}
.que-es__text h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.1rem;
  line-height: 1.25;
}
.que-es__text p { font-size: .93rem; margin-bottom: .9rem; }

.pills { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.1rem 0 1.3rem; }
.pills span {
  padding: .3rem .9rem;
  border-radius: var(--r-pill);
  background: var(--cream-dark);
  font-size: .75rem;
  font-weight: 500;
  color: var(--sage-dk);
  letter-spacing: .04em;
}

/* =============================================
   PROTOCOLOS
   ============================================= */
.protocolos { padding: var(--py) var(--px); background: var(--cream-dark); }
.protocolos__head { text-align: center; margin-bottom: 3rem; }
.protocolos__head h2 {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-top: .4rem;
}
.protocolos__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

/* Card */
.pcard {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pcard:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(28,25,18,.13); }

.pcard__img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.pcard__img--ph {
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard__img--ph span {
  font-family: var(--f-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--sage);
  opacity: .6;
  font-style: italic;
}

.pcard__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.pcard__body h3 {
  font-family: var(--f-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: .25rem;
}
.pcard__tag {
  font-size: .83rem;
  color: var(--sage);
  font-style: italic;
  margin-bottom: 1.1rem;
}
.pcard__tech { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1rem; }
.pcard__row { display: flex; gap: .8rem; align-items: flex-start; }

/* Único icono para todos: un punto sage simple, sin IA */
.pcard__dot {
  width: .55rem;
  height: .55rem;
  min-width: .55rem;
  border-radius: 50%;
  background: var(--sage-dk);
  margin-top: .55rem;
}

.pcard__row strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .15rem;
  font-family: var(--f-sans);
}
.pcard__row p { font-size: .78rem; line-height: 1.6; margin: 0; }

.pcard__ideal {
  font-size: .8rem;
  color: var(--sage-dk);
  margin-bottom: 1rem;
}
.pcard__result {
  background: var(--sage);
  color: #fff !important;
  padding: .75rem .9rem;
  border-radius: .75rem;
  font-size: .78rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

/* También puedes descubrir */
.tambien {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
}

.tambien__label {
  font-family: 'Roboto', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.75rem;
  text-align: left;
}

.tambien__list {
  display: flex;
  flex-direction: column;
}

.tambien__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.tambien__item-text {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.tambien__item-text h4 {
  font-family: 'Roboto', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: #282520;
  margin: 0;
  letter-spacing: 0;
}

.tambien__item-text p {
  font-family: 'Roboto', sans-serif;
  font-size: .82rem;
  font-weight: 300;
  color: #999;
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

.tambien__link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
  font-family: 'Roboto', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: #282520;
  border: 1px solid rgba(0,0,0,.2);
  padding: .5rem 1.1rem;
  border-radius: 50rem;
  transition: border-color .22s, color .22s;
  flex-shrink: 0;
}

.tambien__link svg {
  width: .85rem;
  height: .85rem;
  opacity: .6;
  flex-shrink: 0;
}

.tambien__link:hover {
  border-color: #606b57;
  color: #606b57;
}

/* =============================================
   POR QUÉ
   ============================================= */
.porque {
  padding: var(--py) var(--px);
  background: var(--cream);
}

.porque__inner {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.porque__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 400;
  color: #282520;
  margin-bottom: 1.25rem;
  line-height: 1.18;
}

.porque__text p {
  font-size: .9rem;
  color: #777;
  margin-bottom: .9rem;
  line-height: 1.75;
}

.porque__frase {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: #5a564f !important;
  border-left: 2px solid #b8975a;
  padding-left: 1rem;
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* Cards — sin sombra agresiva, sin círculo genérico */
.porque__cards {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.porque__card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 12px rgba(28,25,18,.06);
}

.porque__card-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  object-fit: contain;
}

.porque__card-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #282520;
  margin-bottom: .25rem;
}

.porque__card-text p {
  font-size: .8rem;
  color: #777;
  margin: 0;
  line-height: 1.65;
}

.porque__cta {
  text-align: center;
}

@media (max-width: 1024px) {
  .porque__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* =============================================
   TESTIMONIOS
   ============================================= */
.testimonios { padding: var(--py) var(--px); background: var(--white); }
.testimonios__inner { max-width: 1200px; margin: 0 auto; }
.testimonios h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-bottom: 2.25rem;
}
.testimonios__wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonios__track {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.1rem;
  flex: 1;
  overflow: hidden;
}
.tcard {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: var(--shadow);
}
.tcard__head { display: flex; align-items: center; justify-content: space-between; }
.stars { color: #f5b700; font-size: .9rem; letter-spacing: .04em; }
.tcard__g { height: 1.3rem; width: auto; }
.tcard p { font-size: .84rem; line-height: 1.7; font-style: italic; }
.tcard__name { font-size: .78rem; font-weight: 600; color: var(--text); letter-spacing: .03em; }

.t-arrow {
  background: var(--sage);
  color: #fff;
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--ease);
}
.t-arrow:hover { background: var(--sage-dk); }

/* =============================================
   CONTACTO
   ============================================= */
.contacto { padding: var(--py) var(--px); background: var(--cream-dark); }
.contacto__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contacto__left h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.22;
}
.contacto__goals { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.contacto__goals span {
  padding: .28rem .85rem;
  border-radius: var(--r-pill);
  background: var(--sage);
  color: #fff;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .05em;
}
.contacto__left p { font-size: .9rem; }

.contacto__form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.contacto__form-wrap h3 {
  font-family: var(--f-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .4rem;
}
.form-hint { font-size: .82rem; color: var(--text-mid); margin-bottom: 1.5rem; }

.form { display: flex; flex-direction: column; gap: .75rem; }
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: .8rem 1.1rem;
  border-radius: .75rem;
  border: none;
  background: var(--cream);
  font-family: var(--f-sans);
  font-size: .88rem;
  color: var(--text);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: var(--ease);
  resize: vertical;
}
.form input::placeholder,
.form textarea::placeholder { color: #a09890; }
.form select { color: #a09890; cursor: pointer; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  background: #eae5d9;
  box-shadow: 0 0 0 2px rgba(96,107,87,.22);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form__ok {
  text-align: center;
  padding: .9rem;
  background: rgba(126,135,117,.12);
  border-radius: .75rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--sage-dk);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  background-color: #3d4035;
  background-image: url('https://clinica-aurus.com/themes/aurus/images/home2025web.png');
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(40,42,34,.83);
  z-index: 0;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 5vw, 5rem) 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr .9fr;
  gap: 3rem;
  align-items: start;
}

.footer__logo { height: 4.5rem; width: auto; margin-bottom: 1.25rem; }

.footer__desc {
  font-size: .82rem;
  line-height: 1.75;
  color: rgba(255,255,255,.62);
  margin-bottom: 1.4rem;
}

.footer__contact { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.25rem; }
.footer__contact li { display: flex; align-items: center; gap: .65rem; }
.footer__contact svg { width: 1.1rem; height: 1.1rem; stroke: rgba(255,255,255,.45); flex-shrink: 0; }
.footer__contact span,
.footer__contact span a { font-size: .82rem; color: rgba(255,255,255,.62); }
.footer__contact strong { color: rgba(255,255,255,.85); font-weight: 500; }
.footer__contact a:hover { color: #fff; }

.footer__legal { font-size: .7rem; color: rgba(255,255,255,.35); line-height: 1.65; }

.footer__col-title {
  font-family: 'Roboto', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  margin-bottom: .55rem;
}
.footer__col-title--lg {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
}
.footer__col-text { font-size: .8rem; color: rgba(255,255,255,.58); line-height: 1.78; }

.footer__sitemap { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 1.5rem; }
.footer__sitemap-col { display: flex; flex-direction: column; gap: .65rem; }
.footer__sitemap-col a { font-size: .8rem; color: rgba(255,255,255,.58); transition: color .28s ease; }
.footer__sitemap-col a:hover { color: #fff; }

.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem clamp(1.5rem, 5vw, 5rem);
  text-align: center;
}
.footer__bottom p,
.footer__bottom a { font-size: .72rem; color: rgba(255,255,255,.28); }
.footer__bottom a:hover { color: rgba(255,255,255,.6); }

/* =============================================
   WA FLOTANTE
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 200;
  width: 3.1rem;
  height: 3.1rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float svg { width: 1.65rem; height: 1.65rem; fill: #fff; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* =============================================
   FADE IN
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity .65s ease, transform .65s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .protocolos__grid  { grid-template-columns: repeat(2,1fr); }
  .que-es__inner,
  .porque__inner,
  .contacto__inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .que-es__img-col   { display: none; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__col--main { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --py: 3.5rem; }
  .nav__bar      { margin: 0; border-radius: 0; padding: .8rem 1.25rem; }
  .nav__links      { display: none; }
  .nav__atencion   { display: none; }
  .nav__hamburger  { display: flex; }
  .protocolos__grid { grid-template-columns: 1fr; }
  .tambien__grid   { grid-template-columns: 1fr; }
  .testimonios__track { grid-template-columns: 1fr; }
  .form__row       { grid-template-columns: 1fr; }
  .footer__info    { flex-direction: column; gap: 1.25rem; }
    .footer__inner { grid-template-columns: 1fr; }
  .footer__col--main { grid-column: auto; }
   .tambien__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  @media (max-width: 640px) {
  .tambien__item {
    flex-direction: column;
    align-items: flex-start;
    gap: .9rem;
  }
}