@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500;6..96,600&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

:root {
  --white: #fffdf9;
  --cream: #fff9f2;
  --coral: #e99b83;
  --coral-light: #f5c5b6;
  --coral-pale: #fbe6df;
  --black: #191716;
  --gray: #716b67;
  --line: #e8ddd6;
  --max: 1180px;
  --serif: "Bodoni Moda", "Didot", "Bodoni 72", serif;
  --sans: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}

* { 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.4;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 105px 0; }
.eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
}

h1, h2, h3, p { 
  margin-top: 0; 
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .95;
}

h1 { 
  font-size: clamp(60px, 7vw, 102px); margin-bottom: 30px; 
}

h2 { 
  font-size: clamp(52px, 6vw, 82px); margin-bottom: 28px; 
}

h1 em, h2 em { 
  color: #c97962; font-style: italic; 
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}

.btn:hover { 
  transform: translateY(-2px); 
}

.btn-dark { 
  background: var(--black); color: white; 
}

.btn-coral { 
  background: var(--coral); color: var(--black); 
}

/* Header */
/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 55px;
}


/* LOGO */
.brand {
  display: flex;
  flex-direction: column;
  width: fit-content;
  white-space: nowrap;
}

.brand-main {
  font-family: var(--serif);
  font-size: 36px;
  line-height: .85;
  letter-spacing: -.065em;
  font-weight: 600;
}

.brand-sub {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .01em;
}

/* NAVEGACIÓN */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  position: relative;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* BOTÓN CONTACTANOS */
.nav-cta {
  min-height: 46px;
  padding: 0 24px;
  font-size: 16px;
}

/* =========================
   HAMBURGUESA
========================= */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--black);
  transition:
    transform .25s ease,
    opacity .25s ease;
}

/* =========================
   MENÚ MOBILE
========================= */
.mobile-menu {
  display: none;
  padding: 8px 24px 25px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
}

.mobile-menu-contact {
  margin-top: 18px;
  padding: 14px 20px !important;
  border: none !important;
  border-radius: 999px;
  background: var(--black);
  color: white;
  text-align: center;
}

/* MENÚ ABIERTO */
.mobile-menu.active {
  display: block;
}

/* ANIMACIÓN HAMBURGUESA */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 83% 38%, var(--coral-light) 0 18%, transparent 18.2%),
    linear-gradient(110deg, var(--white) 0 63%, var(--coral-pale) 63% 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.hero-text { 
  max-width: 540px; color: var(--gray); font-size: 21px; 
}

.hero-actions { 
  display: flex; align-items: center; gap: 28px; margin-top: 35px; 
}

.text-link { 
  font-weight: 600; 
}

.text-link span { 
  color: #c97962; margin-left: 7px; 
}

.hero-card {
  min-height: 475px;
  padding: 28px;
  display: flex;
  align-items: end;
  background: linear-gradient(145deg, rgba(25,23,22,.02), rgba(25,23,22,.08)),
    var(--coral);
  border-radius: 2px;
}

.hero-card-inner {
  width: 100%;
  min-height: 255px;
  padding: 36px;
  background: rgba(255,253,249,.9);
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.hero-card-label { 
  font-size: 13px; font-weight: 700; letter-spacing: .2em; margin-bottom: auto; 
}

.hero-card strong {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 57px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.04em;
}

.hero-card-line { 
  width: 70px; height: 2px; background: var(--coral); margin: 22px 0 15px; 
}

.hero-card p { 
  margin: 0; color: var(--gray); 
}

.hero-decoration {
  position: absolute;
  border: 1px solid rgba(25,23,22,.12);
  border-radius: 50%;
}

.hero-decoration-one { 
  width: 390px; height: 390px; right: 7%; top: 7%; 
}

.hero-decoration-two { 
  width: 190px; height: 190px; right: 30%; bottom: -55px; 
}

/* Intro */
.intro { background: var(--black); color: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: end;
}

.intro .eyebrow { 
  color: var(--coral-light); 
}

.intro h2 { 
  margin-bottom: 0; 
}

.intro-text { 
  margin: 0; max-width: 550px; color: #d0c8c3; font-size: 22px; 
}

/* Services */
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading > p { 
  max-width: 320px; margin-bottom: 10px; color: var(--gray); font-size: 20px; 
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform .25s ease;
}

.service-card:hover { 
  transform: translateY(-5px); 
}

.service-image { 
  aspect-ratio: 1 / 1; overflow: hidden; background: var(--coral-pale); 
}

.service-image img {
  height: 100%;
  object-fit: cover;
}

.service-body { 
  padding: 25px 26px 30px; 
}

.service-number { 
  color: #c97962; font-size: 14px; font-weight: 700; 
}

.service-body h3 {
  margin: 7px 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1;
  font-weight: 500;
}

.service-body p { 
  margin: 0; color: var(--gray); font-size: 18px; 
}

.zones {
  margin-top: 70px;
  padding: 45px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 55px;
  background: var(--coral-pale);
}

.zones-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  line-height: .95;
  font-weight: 500;
}

.zones-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(25,23,22,.18);
}

.zones-list span {
  padding: 12px 0;
  border-bottom: 1px solid rgba(25,23,22,.18);
  font-weight: 600;
  text-transform: capitalize;
}

/* Turnos */
.appointment { 
  background: var(--cream); 
}

.appointment-box {
  padding: 75px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 90px;
  background: var(--coral);
}

.appointment-copy p:not(.eyebrow) { 
  max-width: 500px; font-size: 21px; 
}

.appointment-copy .btn { 
  margin-top: 12px; 
}

.locations {
  padding-left: 50px;
  border-left: 1px solid rgba(25,23,22,.25);
}

.locations-label { 
  margin: 0 0 20px; font-size: 14px; font-weight: 700; letter-spacing: .15em; 
}

.location-list div {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(25,23,22,.22);
  font-family: var(--serif);
  font-size: 30px;
}

.location-list span { 
  font-family: var(--sans); font-size: 13px; font-weight: 700; 
}

.phone { 
  margin: 25px 0 0; font-size: 23px; font-weight: 600; 
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
}

.contact-content { 
  max-width: 510px; 
}

.contact-content p { 
  color: var(--gray); font-size: 22px; margin-bottom: 35px; 
}

.contact-whatsapp {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  font-size: 22px;
  font-weight: 600;
}

/* Footer */
.site-footer { 
  background: var(--black); color: var(--white); padding: 65px 0 25px; 
}

.footer-top {
  min-height: 240px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.footer-brand { 
  font-family: var(--serif); font-size: 62px; letter-spacing: -.06em; line-height: .9; 
}

.footer-top p { 
  -top: 12px; color: #b9b1ac; font-size: 18px; 
}

.socials { 
  display: flex; gap: 32px; 
}

.socials a { 
  font-size: 18px; font-weight: 600; 
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9e9691;
  font-size: 14px;
}

.footer-bottom a { 
  color: var(--coral-light); 
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: all .25s ease;
}

/* Menú desplegable */
.mobile-menu {
  display: none;
  padding: 10px 24px 25px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  font-weight: 600;
}

.mobile-menu-contact {
  margin-top: 15px;
  padding: 14px 20px !important;
  border: 0 !important;
  background: var(--black);
  color: white;
  text-align: center;
  border-radius: 999px;
}

/* Estado abierto */
.mobile-menu.active {
  display: block;
}

/* Animación hamburguesa */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Responsive */
/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 900px) {
  .nav-wrap {
    min-height: 82px;
    grid-template-columns: 1fr auto;
    column-gap: 20px;
  }

  /* Ocultar navegación desktop */
  .main-nav,
  .nav-cta {
    display: none;
  }

  /* Mostrar hamburguesa */
  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 90px 0;
    background:
      linear-gradient(
        145deg,
        var(--white) 0 62%,
        var(--coral-pale) 62%
      );
  }

  .hero-grid,
  .intro-grid,
  .appointment-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

  .hero-card {
    min-height: 390px;
  }

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

  .service-image {
    aspect-ratio: 16 / 8;
  }

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

  .locations {
    padding-left: 0;
    padding-top: 40px;
    border-left: 0;
    border-top: 1px solid rgba(25,23,22,.25);
  }

  .appointment-box {
    padding: 50px 35px;
    gap: 55px;
  }

  .contact-grid {
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 30px)); }
  .site-header { position: relative; }
  .nav-wrap { min-height: 82px; gap: 15px; }
  .brand-main { font-size: 29px; }
  .brand-sub { font-size: 14px; }
  .nav-cta { padding: 0 18px; min-height: 44px; }
  .section { padding: 75px 0; }
  h1 { font-size: 56px; }
  h2 { font-size: 48px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .section-heading { display: block; margin-bottom: 35px; }
  .section-heading > p { margin-top: 20px; }
  .zones { padding: 30px 25px; }
  .zones-list { grid-template-columns: 1fr 1fr; }
  .location-list div { font-size: 25px; }
  .footer-top { min-height: 290px; display: block; }
  .footer-brand { font-size: 50px; }
  .socials { margin-top: 45px; flex-direction: column; gap: 13px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span:last-child {
    width: 100%;
    text-align: center;
  }

}

/* =========================
   BOTÓN FLOTANTE WHATSAPP
========================= */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(25, 23, 22, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(25, 23, 22, .28);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

@media (max-width: 560px) {
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }
}

