/* ============================================================
   Template: beauty-salon (salón de belleza)
   Tema claro y premium — Rosa y Oro.
   Paleta:
   - Fondo ............. #FFF8F8, sólido, sin variaciones (60%)
   - Superficies ....... #FFFFFF (30%)
   - Acento rosa ....... #F1A7B4 (blush, fondos/bordes suaves)
                          #B3486A (rosa profundo, texto/botones — AA)
   - Acento dorado ..... #D4AF37 (10%, detalles)
   - Texto principal ... #2B2320
   - Footer ............ #3B1220 (banda oscura de cierre)
   ============================================================ */

:root {
  --bg: #FFF8F8;
  --bg-soft: #FFF8F8;
  --surface: #FFFFFF;
  --surface-2: #FFFFFF;
  --border: #F2DEE2;
  --ink: #2B2320;
  --ink-soft: #6B5C58;
  --rose: #B3486A;
  --rose-dark: #8C3752;
  --rose-soft: rgba(241, 167, 180, 0.18);
  --rose-lt: #F1A7B4;
  --gold: #D4AF37;
  --gold-dark: #A8862C;
  --gold-deep: #8F6E23;
  --gold-lt: #E9CE7A;
  --gold-soft: rgba(212, 175, 55, 0.16);
  --footer-bg: #3B1220;
  --footer-ink: #FBEFE9;
  --shadow: 0 8px 24px rgba(43, 35, 32, 0.08);
  --shadow-lg: 0 20px 48px rgba(43, 35, 32, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: "Noto Sans", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

/* ---------- Reset básico ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--rose-dark);
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}

/* ---------- Utilidades ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 96px 0;
  background-color: var(--bg);
}

.section--alt {
  background-color: var(--bg-soft);
}

.section--dark-alt {
  background-color: var(--bg-soft);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-dark);
  background-color: var(--rose-soft);
  border: 1px solid rgba(241, 167, 180, 0.5);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-weight: 700;
  font-size: clamp(2.1rem, 4.2vw, 2.75rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink-soft);
}

/* Aparición al hacer scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
  background-color: var(--rose);
  color: #FFF8F8;
  box-shadow: 0 10px 26px rgba(179, 72, 106, 0.28);
}

.btn--primary:hover {
  background-color: var(--rose-dark);
}

.btn--accent {
  background-color: var(--gold);
  color: #2B2320;
}

.btn--accent:hover {
  background-color: var(--gold-dark);
  color: #FFF8F8;
}

.btn--ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: rgba(43, 35, 32, 0.25);
}

.btn--ghost:hover {
  background-color: rgba(43, 35, 32, 0.05);
  border-color: rgba(43, 35, 32, 0.4);
}

.btn--outline {
  background-color: transparent;
  color: var(--rose-dark);
  border-color: var(--rose-lt);
}

.btn--outline:hover {
  background-color: var(--rose-soft);
  border-color: var(--rose);
}

/* ---------- Header / Navegación ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #FFF8F8;
  transition: box-shadow 0.25s ease;
}

.header.is-scrolled {
  box-shadow: 0 2px 20px rgba(43, 35, 32, 0.1);
  border-bottom: 1px solid var(--border);
}

.header__notice {
  background-color: var(--footer-bg);
  color: #E8CCD3;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 8px 16px;
}

.header__notice span[aria-hidden] {
  margin-right: 6px;
}

.header__notice-short {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
}

.brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: var(--rose-soft);
  border: 1px solid rgba(241, 167, 180, 0.45);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background-color: var(--rose-soft);
  color: var(--rose-dark);
}

.nav .nav__cta {
  background-color: var(--rose);
  color: #FFF8F8;
  margin-left: 8px;
}

.nav .nav__cta:hover {
  background-color: var(--rose-dark);
  color: #FFF8F8;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background-color: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 94vh;
  padding: 150px 0 90px;
  color: #FFF8F8;
  background-color: #3B1220;
  background-image: linear-gradient(100deg, rgba(59, 18, 32, 0.92) 10%, rgba(59, 18, 32, 0.68) 50%, rgba(59, 18, 32, 0.28) 100%),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center 25%;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-lt);
  background-color: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 24px;
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(2.6rem, 5.8vw, 4.1rem);
  margin-bottom: 20px;
}

.hero h1 .hl {
  color: var(--rose-lt);
}

.hero p {
  font-size: 1.15rem;
  color: #F1DDE1;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.hero__actions .btn--ghost {
  color: #FFF8F8;
  border-color: rgba(255, 248, 248, 0.4);
}

.hero__actions .btn--ghost:hover {
  background-color: rgba(255, 248, 248, 0.1);
  border-color: rgba(255, 248, 248, 0.65);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.95rem;
  color: #E4C9CF;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Sobre el salón ---------- */
.about {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: center;
}

.about__photo {
  position: relative;
}

.about__photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 100%;
}

.about__photo::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background-color: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.35);
  z-index: -1;
}

.about__photo::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--surface);
  border: 1px solid var(--border);
  z-index: -1;
}

.about__card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about__card span[aria-hidden] {
  font-size: 1.5rem;
}

.about__card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.about__card small {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.about__content h2 {
  font-weight: 700;
  font-size: clamp(2.1rem, 4.2vw, 2.75rem);
  margin-bottom: 16px;
}

.about__content p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.about__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 22px 0 28px;
}

.about__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.about__checks span[aria-hidden] {
  color: var(--rose);
}

/* ---------- Servicios ---------- */
.service-group {
  margin-bottom: 52px;
}

.service-group:last-child {
  margin-bottom: 0;
}

.service-group__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

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

.services-grid--five {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-lt);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background-color: var(--rose-soft);
  border: 1px solid rgba(241, 167, 180, 0.45);
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.service-card__price {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gold-deep);
}

/* ---------- Beneficios ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit > span[aria-hidden] {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background-color: var(--gold-soft);
}

.benefit h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.benefit p {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

/* ---------- Galería: grilla bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 14px;
}

.bento-tile {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--surface);
  cursor: pointer;
  padding: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.bento-tile--wide {
  grid-column: span 2;
}

.bento-tile--tall {
  grid-row: span 2;
}

.bento-tile--big {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-tile:hover img {
  transform: scale(1.08);
}

.bento-tile__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 30px 16px 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #FFF8F8;
  background: linear-gradient(to top, rgba(43, 35, 32, 0.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.bento-tile:hover .bento-tile__overlay,
.bento-tile:focus-visible .bento-tile__overlay {
  opacity: 1;
  transform: none;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background-color: #000;
  background-size: cover;
  background-position: center;
  filter: blur(36px) brightness(0.4) saturate(1.1);
  transform: scale(1.15);
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox__figure figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  color: #FFF8F8;
  font-size: 1.05rem;
}

.lightbox__count {
  color: #C7BDBA;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  background-color: rgba(59, 18, 32, 0.75);
  border: 1px solid rgba(255, 248, 248, 0.2);
  color: #FFF8F8;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background-color: var(--rose);
}

.lightbox__close {
  top: 24px;
  right: 24px;
}

.lightbox__nav--prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev:hover,
.lightbox__nav--next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* ---------- Precios ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.price-card--featured {
  background-color: var(--surface-2);
  border-color: var(--rose);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.price-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--rose);
  color: #FFF8F8;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.price-card__price {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 10px;
}

.price-card__price small {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.price-card__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.price-card ul li span[aria-hidden] {
  color: var(--rose);
}

.price-card .btn {
  width: 100%;
}

/* ---------- Testimonios ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial__stars {
  color: var(--gold-dark);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial blockquote {
  font-size: 0.98rem;
  color: var(--ink-soft);
  font-style: italic;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--rose-dark);
  background-color: var(--rose-soft);
}

.testimonial footer strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.testimonial footer small {
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 18px 22px;
  cursor: pointer;
}

.faq-item__q span[aria-hidden] {
  flex-shrink: 0;
  color: var(--rose);
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.faq-item__q[aria-expanded="true"] span[aria-hidden] {
  transform: rotate(180deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__a p {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- CTA final ---------- */
.cta-band {
  background: linear-gradient(115deg, #3B1220 0%, var(--rose-dark) 70%, var(--rose) 130%);
  border-radius: var(--radius);
  padding: 56px 36px;
  text-align: center;
  color: #FFF8F8;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
}

.cta-band::before {
  width: 220px;
  height: 220px;
  top: -80px;
  left: -60px;
}

.cta-band::after {
  width: 160px;
  height: 160px;
  bottom: -60px;
  right: -40px;
}

.cta-band h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 4.2vw, 2.5rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 28px;
  opacity: 0.92;
  position: relative;
  z-index: 1;
}

.cta-band .btn {
  position: relative;
  z-index: 1;
}

/* ---------- Contacto ---------- */
.contact {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 48px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info__item:last-child {
  border-bottom: 0;
}

.contact-info__item > span[aria-hidden] {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background-color: var(--rose-soft);
}

.contact-info__item h3 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.contact-info__item p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  background-color: var(--rose-soft);
  border: 1px solid rgba(241, 167, 180, 0.45);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-socials a svg {
  width: 20px;
  height: 20px;
}

.contact-socials a:hover {
  background-color: var(--rose);
  color: #FFF8F8;
  transform: translateY(-3px);
}

.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.contact-form > p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background-color: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(179, 72, 106, 0.18);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--footer-bg);
  color: #D8B9C1;
  padding: 56px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer .brand {
  color: var(--footer-ink);
  margin-bottom: 14px;
}

.footer .brand__icon {
  background-color: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold-lt);
}

.footer .brand small {
  color: #B78D96;
}

.footer p {
  font-size: 0.95rem;
}

.footer h4 {
  color: var(--footer-ink);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: #D8B9C1;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--gold-lt);
}

.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.footer__bottom {
  border-top: 1px solid rgba(251, 239, 233, 0.12);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.88rem;
  color: #B78D96;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__credit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.footer__credit img {
  height: 17px;
  width: auto;
  display: inline;
}

/* ---------- Botón flotante de WhatsApp ---------- */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid,
  .services-grid--five,
  .benefits-grid,
  .testimonials,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .price-card--featured {
    grid-column: span 2;
    transform: none;
  }

  .price-card--featured:hover {
    transform: translateY(-6px);
  }

  .bento {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 44px;
  }

  .about__photo {
    max-width: 460px;
    margin: 0 auto;
  }

  .hero {
    background-position: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .header__notice {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .header__notice-full {
    display: none;
  }

  .header__notice-short {
    display: inline;
  }

  /* Menú mobile */
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background-color: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 24px rgba(43, 35, 32, 0.14);
    padding: 16px 20px 22px;
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 12px 14px;
    text-align: center;
  }

  .nav .nav__cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .bento-tile--big {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-tile--wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento-tile--tall {
    grid-column: span 1;
    grid-row: span 2;
  }

  .lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .lightbox__close {
    top: 14px;
    right: 14px;
  }

  .lightbox__nav--prev {
    left: 10px;
  }

  .lightbox__nav--next {
    right: 10px;
  }

  /* Reserva espacio para el botón flotante de WhatsApp
     sobre la última línea del footer */
  .footer__bottom {
    padding-bottom: 96px;
  }
}

@media (max-width: 560px) {
  .services-grid,
  .services-grid--five,
  .benefits-grid,
  .testimonials,
  .pricing-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    grid-column: auto;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal,
  .footer__credit {
    align-items: center;
  }

  .hero {
    min-height: 0;
    padding: 132px 0 72px;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .contact-form {
    padding: 24px 20px;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 10px;
  }

  .bento-tile--big,
  .bento-tile--wide {
    grid-column: span 2;
  }

  .bento-tile--big {
    grid-row: span 2;
  }

  .lightbox__figure {
    max-width: 96vw;
  }

  .lightbox__figure img {
    max-height: 62vh;
  }
}
