/* ═══════════════════════════════════════════════════════════════
   PALETA V1: ROSA DORADO — Belleza Elegante
   Rosa empolvado, dorado champagne, marfil, nude
   ═══════════════════════════════════════════════════════════════ */
:root {
  --rose: #9b3e6b;
  --rose-deep: #7a2c52;
  --rose-soft: #d4889f;
  --rose-petal: #f4d0db;
  --rose-mist: #fce8ee;
  --ink: #3d1f2e;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --champagne: #f7e8d3;
  --cream: #fdf8f4;
  --blush: #f9e0e8;
  --nude: #e8c9b8;
  --line: #f0d9e0;
  --glow: rgba(201, 169, 110, 0.2);
  --rose-glow: rgba(155, 62, 107, 0.15);
  --shadow: rgba(155, 62, 107, 0.12);
  --shadow-soft: rgba(201, 169, 110, 0.08);
  --header-bg: rgba(253, 248, 244, 0.88);
  --nav-mobile-bg: rgba(253, 248, 244, 0.98);
  --estilo-menu-bg: rgba(255, 255, 255, 0.95);
  --card-bg: white;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-shimmer: linear-gradient(90deg, var(--rose), var(--gold), var(--rose-soft), var(--rose));
}

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

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Poppins', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fondo decorativo con textura sutil */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, var(--rose-mist) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, var(--champagne) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════
   TIPOGRAFÍA
   ═══════════════════════════════════════════════════════════════ */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h3 { font-size: 1.6rem; }

h1 i, h2 i {
  font-weight: 400;
  font-style: italic;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  line-height: 1.7;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   COMPONENTES REUTILIZABLES
   ═══════════════════════════════════════════════════════════════ */
.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.lead {
  font-size: 1.15rem;
  max-width: 500px;
  margin: 1.5rem 0 2rem;
  color: color-mix(in srgb, var(--ink) 70%, var(--cream));
  font-weight: 300;
}

.button {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white;
  border: none;
  border-radius: 99px;
  padding: 1rem 1.8rem;
  font: 600 0.82rem 'Poppins';
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px var(--shadow);
}

.button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--rose-soft));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.button span,
.button {
  position: relative;
  z-index: 1;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--shadow);
}

.button:hover::after {
  opacity: 1;
}

.button span {
  transition: transform 0.3s ease;
}

.button:hover span {
  transform: translateX(5px);
}

.text-link {
  color: var(--rose);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  position: relative;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width 0.3s ease;
}

.text-link:hover::after {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   SKIP LINK
   ═══════════════════════════════════════════════════════════════ */
.skip {
  position: absolute;
  left: -999px;
  z-index: 1000;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ═══════════════════════════════════════════════════════════════
   LOADER DE BIENVENIDA
   ═══════════════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-petal {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50% 0 50% 50%;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose));
  opacity: 0.7;
  animation: petalSpin 1.5s ease-in-out infinite;
}

.loader-petal:nth-child(1) { transform: rotate(0deg) translate(0, -30px); animation-delay: 0s; }
.loader-petal:nth-child(2) { transform: rotate(72deg) translate(0, -30px); animation-delay: 0.15s; }
.loader-petal:nth-child(3) { transform: rotate(144deg) translate(0, -30px); animation-delay: 0.3s; }
.loader-petal:nth-child(4) { transform: rotate(216deg) translate(0, -30px); animation-delay: 0.45s; }
.loader-petal:nth-child(5) { transform: rotate(288deg) translate(0, -30px); animation-delay: 0.6s; }

@keyframes petalSpin {
  0%, 100% { opacity: 0.5; transform-origin: center; }
  50% { opacity: 1; }
}

.loader-center {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 20px var(--glow);
  animation: pulse 1.2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   ESTILO DROPDOWN — En el menú de navegación
   ═══════════════════════════════════════════════════════════════ */
.nav-estilo {
  position: relative;
}

.estilo-toggle {
  background: none;
  border: 2px solid var(--line);
  border-radius: 99px;
  padding: 0.5rem 1.2rem;
  font: 700 1.5rem 'Poppins';
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.estilo-toggle:hover {
  color: var(--rose);
  border-color: var(--rose-soft);
  background: var(--rose-mist);
}

.estilo-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--estilo-menu-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem;
  border-radius: 20px;
  box-shadow: 0 12px 50px rgba(155, 62, 107, 0.15);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 200;
  min-width: 200px;
}

.nav-estilo:hover .estilo-menu,
.nav-estilo:focus-within .estilo-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-btn {
  padding: 0.7rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 14px;
  background: transparent;
  font: 600 1rem 'Poppins';
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  color: color-mix(in srgb, var(--ink) 65%, var(--cream));
  text-align: left;
}

.theme-btn:hover {
  background: var(--rose-mist);
  color: var(--rose);
}

.theme-btn.active {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px var(--shadow);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  height: 110px;
  padding: 0 clamp(1.2rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(155, 62, 107, 0.08);
  background: var(--header-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(155, 62, 107, 0.08);
  border-bottom-color: var(--line);
}

.brand {
  color: var(--rose);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.brand:hover {
  transform: scale(1.02);
}

.brand-icon {
  color: var(--gold);
  font-size: 5rem;
  margin-right: 0.4rem;
  animation: bloom 3s ease-in-out infinite;
  display: inline-block;
  line-height: 1;
  transform-origin: center center;
}

@keyframes bloom {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.1) rotate(8deg); opacity: 0.85; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.brand span {
  font-style: italic;
  font-weight: 400;
}

.brand em {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  font-weight: 600;
}

nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
  transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--rose);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.button-small {
  padding: 0.7rem 1.3rem;
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--rose);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: clamp(1.2rem, 10vw, 12rem);
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-mist) 50%, var(--champagne) 100%);
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Orbes decorativos flotantes */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--rose-soft);
  top: 10%;
  left: 5%;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: var(--gold-light);
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: var(--rose-petal);
  top: 50%;
  left: 40%;
  animation-delay: 6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-copy {
  align-self: center;
  padding: 6rem 3rem 6rem 0;
  position: relative;
  z-index: 2;
}

.hero-title {
  margin: 0;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.hero-art {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--rose-soft), var(--nude), var(--gold-light));
  min-height: 100vh;
}

/* Patrón de textura sutil en el hero-art */
.hero-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 30%);
  z-index: 1;
}

.arch {
  position: absolute;
  border-radius: 50% 50% 0 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: archFloat 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes archFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.arch-one {
  height: 74%;
  width: 70%;
  left: 11%;
  bottom: -4%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.arch-two {
  height: 57%;
  width: 55%;
  left: 19%;
  bottom: 0;
  border-width: 12px;
  border-color: rgba(255, 255, 255, 0.3);
  animation-delay: 0.5s;
}

.arch-three {
  height: 40%;
  width: 40%;
  left: 26%;
  bottom: 0;
  border-width: 6px;
  border-color: rgba(255, 255, 255, 0.2);
  animation-delay: 1s;
}

/* Pétalos decorativos flotantes */
.petal {
  position: absolute;
  font-size: 8rem;
  line-height: 1;
  opacity: 0.5;
  z-index: 3;
  animation: petalFloat 10s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

@keyframes petalFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(10deg); }
  50% { transform: translateY(-30px) rotate(-5deg); }
  75% { transform: translateY(-15px) rotate(8deg); }
}

.petal-1 {
  top: 5%;
  right: 8%;
  color: rgba(255, 255, 255, 0.6);
  animation-delay: 0s;
}

.petal-2 {
  top: 40%;
  right: 15%;
  color: rgba(255, 235, 200, 0.5);
  font-size: 5rem;
  animation-delay: 2s;
}

.petal-3 {
  bottom: 8%;
  right: 5%;
  color: rgba(255, 220, 230, 0.5);
  font-size: 6rem;
  animation-delay: 4s;
}

.petal-4 {
  top: 15%;
  left: 10%;
  color: rgba(255, 255, 255, 0.4);
  font-size: 4rem;
  animation-delay: 6s;
}

.hero-label {
  position: absolute;
  left: 14%;
  bottom: 12%;
  color: white;
  z-index: 4;
  text-shadow: 0 2px 15px rgba(122, 44, 82, 0.3);
}

.hero-label small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.hero-label strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES BAR
   ═══════════════════════════════════════════════════════════════ */
.features-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--card-bg);
  box-shadow: 0 4px 30px var(--shadow-soft);
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
  margin: -2rem auto 0;
  max-width: 900px;
  border-radius: 20px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}

.feature-icon {
  font-size: 1.3rem;
}

/* ═══════════════════════════════════════════════════════════════
   INTRO
   ═══════════════════════════════════════════════════════════════ */
.intro {
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.intro h2 {
  margin-bottom: 1.5rem;
}

.intro p:last-child {
  color: color-mix(in srgb, var(--ink) 72%, var(--cream));
  max-width: 580px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   SECCIONES
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: 4.5rem clamp(1.2rem, 6vw, 6rem);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading .muted {
  max-width: 320px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--ink) 65%, var(--cream));
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   GALERÍA DE UÑAS
   ═══════════════════════════════════════════════════════════════ */
.nails {
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}

.nails-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.nails-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--rose-soft), var(--gold-light));
  box-shadow: 0 4px 22px var(--shadow-soft);
  cursor: pointer;
}

.nails-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nails-item:hover img {
  transform: scale(1.08);
}

.nails-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nails-item:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .nails-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .nails-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICIOS
   ═══════════════════════════════════════════════════════════════ */
.services {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
  box-shadow: 0 4px 25px var(--shadow-soft);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 5;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose-glow), var(--glow));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 24px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px var(--shadow);
}

.service-thumb {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-thumb {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.service-card p {
  color: color-mix(in srgb, var(--ink) 72%, var(--cream));
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
  font-weight: 300;
}

.service-card a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-card a span {
  color: var(--gold);
  transition: transform 0.3s ease;
}

.service-card:hover a span {
  transform: translateX(6px);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIOS
   ═══════════════════════════════════════════════════════════════ */
.testimonials {
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 25px var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--rose-petal);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: color-mix(in srgb, var(--ink) 65%, var(--cream));
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-author strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-author small {
  color: #9b7a8a;
  font-size: 0.78rem;
}

/* ═══════════════════════════════════════════════════════════════
   VISIT / CONTACTO
   ═══════════════════════════════════════════════════════════════ */
.visit {
  background: linear-gradient(135deg, var(--rose-petal) 0%, var(--nude) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.visit-card {
  padding: 6rem clamp(1.2rem, 8vw, 9rem);
  text-align: center;
}

.contact-lines {
  margin: 2rem auto;
  text-align: center;
}

.contact-lines p {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  margin: 0.9rem 0;
  font-size: 1.15rem;
  color: var(--ink);
}

.contact-lines span {
  font-size: 1.4rem;
}

/* Enlaces táctiles: dirección (mapa) y teléfono (llamada directa) */
.contact-lines a.contact-tap {
  color: var(--rose-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--rose-soft);
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-lines a.contact-tap:hover,
.contact-lines a.contact-tap:active {
  background: var(--rose-mist);
  color: var(--rose);
  border-bottom-color: var(--rose);
}

.qr-links {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
}

.qr-links figure {
  margin: 0;
  width: 130px;
  text-align: center;
}

.qr-links img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  background: white;
  padding: 8px;
  border-radius: 16px;
  box-shadow: 0 6px 25px var(--shadow);
}

.qr-links a.qr-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background: white;
  padding: 8px;
  border-radius: 16px;
  box-shadow: 0 6px 25px var(--shadow);
  color: #25d366;
  transition: var(--transition);
}

.qr-links a.qr-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow);
}

.qr-links a.qr-box svg {
  width: 54px;
  height: 54px;
}

.qr-links figcaption {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  color: var(--rose-deep);
}

.qr-links figcaption strong {
  display: block;
  color: var(--rose);
  font-size: 0.85rem;
}

.map-embed {
  min-height: 500px;
  background: linear-gradient(135deg, var(--rose-soft), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-embed::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}

.map-embed::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  display: block;
  position: relative;
  z-index: 1;
}

.map-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  padding: 4rem clamp(1.2rem, 8vw, 9rem) 2rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--ink) 85%, black) 0%, var(--rose-deep) 100%);
  color: color-mix(in srgb, var(--cream) 80%, var(--ink));
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

footer .brand {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

footer .brand-icon {
  color: var(--gold);
}

footer p {
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--cream) 65%, var(--ink));
  font-weight: 300;
}

.socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.socials a,
.socials span {
  font-size: 0.76rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 0.9rem;
  border-radius: 99px;
  transition: var(--transition);
}

.socials a:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(155, 62, 107, 0.3);
}

.socials span {
  color: #b89aa8;
  cursor: not-allowed;
}

.copyright {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #b89aa8;
}

/* ═══════════════════════════════════════════════════════════════
   BOTÓN FLOTANTE DE RESERVA (antes WhatsApp)
   Mantiene el globo verde con icono de WhatsApp pero abre el popup
   ═══════════════════════════════════════════════════════════════ */
.whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  border-radius: 99px;
  padding: 0.85rem 1.4rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  animation: whatsappPulse 2.5s infinite;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 45px rgba(37, 211, 102, 0.65); }
}

.whatsapp:hover {
  transform: scale(1.05) translateY(-3px);
}

.whatsapp svg {
  width: 24px;
  height: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   DIALOG / MODAL
   ═══════════════════════════════════════════════════════════════ */
dialog {
  border: 0;
  padding: 0;
  width: min(600px, calc(100% - 2rem));
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(61, 31, 46, 0.25);
  border-radius: 28px;
  overflow: hidden;
  animation: dialogIn 0.4s ease-out;
}

@keyframes dialogIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

dialog::backdrop {
  background: rgba(61, 31, 46, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.booking-title {
  padding: 2.5rem 2.5rem 1rem;
}

.booking-title h2 {
  font-size: 2.8rem;
  margin: 0.5rem 0;
}

.booking-title p:not(.eyebrow) {
  color: #8a5a6e;
  font-size: 0.95rem;
  font-weight: 300;
}

#booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1rem 2.5rem 2.5rem;
}

#booking-form label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose-deep);
  display: grid;
  gap: 0.4rem;
}

#booking-form label:first-child,
#booking-form label:nth-child(6),
#booking-form button,
.form-note {
  grid-column: 1/-1;
}

input, select, textarea {
  font: 400 0.95rem 'Poppins';
  border: 2px solid var(--line);
  padding: 0.85rem 1rem;
  background: var(--card-bg);
  color: var(--ink);
  border-radius: 14px;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--rose-soft);
  box-shadow: 0 0 0 4px var(--rose-glow);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: #9b7a8a;
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 300;
}

.close-dialog {
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  border: 0;
  background: none;
  font-size: 2.2rem;
  color: var(--rose);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.close-dialog:hover {
  background: var(--rose-mist);
  transform: rotate(90deg);
}

.booking-success {
  padding: 2rem 2.5rem 3rem;
}

.booking-success h2 {
  font-size: 2.5rem;
}

.booking-success p {
  color: #8a5a6e;
  margin: 1rem 0;
}

.booking-success .button {
  display: inline-block;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero {
    padding-left: clamp(1.2rem, 5vw, 4rem);
  }

  .features-bar {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 80px;
    padding: 0 1.2rem;
  }

  .site-header .button-small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    font-size: 1.4rem;
  }

  .brand-icon {
    font-size: 3rem;
    margin-right: 0.3rem;
  }

  nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--nav-mobile-bg);
    padding: 1rem 1.2rem 1.5rem;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
    gap: 0.5rem;
    align-items: flex-start;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.2rem;
    font-weight: 700;
  }

  .estilo-toggle {
    font-size: 1.2rem;
  }

  .estilo-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0;
  }

  .theme-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 0;
    min-height: auto;
  }

  .hero-copy {
    padding: 5rem 1.5rem 3rem;
  }

  .hero-art {
    min-height: 400px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .features-bar {
    margin: -1rem 1rem 0;
    border-radius: 16px;
    padding: 1.5rem 1rem;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

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

  .visit-card {
    padding: 5rem 1.5rem;
  }

  .map-embed {
    min-height: 350px;
  }

  .map-embed iframe {
    min-height: 350px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem 2rem;
  }

  #booking-form {
    grid-template-columns: 1fr;
    padding: 1rem 1.5rem 2rem;
  }

  .booking-title {
    padding: 2.5rem 1.5rem 1rem;
  }

  .whatsapp span {
    font-size: 0.74rem;
  }

  .whatsapp {
    padding: 0.7rem 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .petal {
    font-size: 5rem !important;
  }
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .qr-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .features-bar {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   POPUP DE RESERVA — FORMA DE TELÉFONO
   ═══════════════════════════════════════════════════════════════ */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(61, 31, 46, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: overlayIn 0.3s ease-out;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.booking-overlay[hidden] {
  display: none;
}

/* Marco del teléfono */
.phone-popup {
  width: 340px;
  max-width: 100%;
  height: 680px;
  max-height: 90vh;
  background: linear-gradient(145deg, #2a1a28, #3d1f2e);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(155, 62, 107, 0.15);
  position: relative;
  animation: phoneSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes phoneSlideIn {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Botones laterales del teléfono */
.phone-popup::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 120px;
  width: 4px;
  height: 50px;
  background: linear-gradient(90deg, #1a0f15, #2a1a28);
  border-radius: 2px 0 0 2px;
  box-shadow: 0 70px 0 #2a1a28, 0 70px 0 4px #1a0f15;
}

.phone-popup::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 160px;
  width: 4px;
  height: 80px;
  background: linear-gradient(270deg, #1a0f15, #2a1a28);
  border-radius: 0 2px 2px 0;
}

/* Pantalla del teléfono */
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--rose-mist) 0%, var(--cream) 50%, var(--champagne) 100%);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Notch superior */
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a0f15;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-close {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 20;
  background: rgba(155, 62, 107, 0.15);
  border: none;
  color: var(--rose);
  font-size: 1rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.phone-close:hover {
  background: var(--rose);
  color: white;
  transform: rotate(90deg);
}

/* Barra de estado */
.phone-header {
  padding: 6px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--rose-deep);
  height: 36px;
  flex-shrink: 0;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 2px;
}

.phone-icons {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

/* Cuerpo del teléfono */
.phone-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.phone-body::-webkit-scrollbar {
  width: 3px;
}

.phone-body::-webkit-scrollbar-thumb {
  background: var(--rose-soft);
  border-radius: 3px;
}

/* Marca del centro */
.phone-brand {
  text-align: center;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.phone-brand-icon {
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
  animation: bloom 3s ease-in-out infinite;
}

.phone-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1.3;
}

/* Mensaje */
.phone-message {
  text-align: center;
  padding: 0.75rem 1rem;
  background: var(--card-bg);
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  width: 100%;
  position: relative;
}

.phone-message::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 16px;
  height: 16px;
  background: var(--card-bg);
  border-radius: 0 0 0 50%;
  transform: rotate(0deg);
}

.phone-message p {
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--ink) 75%, var(--cream));
  font-weight: 400;
}

/* Botón directo de WhatsApp */
.phone-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  border-radius: 16px;
  font: 600 0.9rem 'Poppins';
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}

.phone-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.phone-wa-btn svg {
  flex-shrink: 0;
}

/* Separador */
.phone-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin: 0.25rem 0;
}

.phone-divider::before,
.phone-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.phone-divider span {
  font-size: 0.75rem;
  color: #9b7a8a;
  font-weight: 400;
}

/* Formulario rápido */
.phone-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phone-form input,
.phone-form select {
  width: 100%;
  font: 400 0.88rem 'Poppins';
  border: 2px solid var(--line);
  padding: 0.8rem 1rem;
  background: var(--card-bg);
  color: var(--ink);
  border-radius: 14px;
  transition: var(--transition);
}

.phone-form input::placeholder {
  color: #b89aa8;
}

.phone-form input:focus,
.phone-form select:focus {
  outline: none;
  border-color: var(--rose-soft);
  box-shadow: 0 0 0 4px var(--rose-glow);
}

.phone-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white;
  border: none;
  border-radius: 16px;
  font: 600 0.88rem 'Poppins';
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px var(--shadow);
}

.phone-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow);
}

/* Confirmación */
.phone-success {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  animation: scaleIn 0.4s ease-out;
}

.phone-success[hidden] {
  display: none;
}

.phone-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  animation: popIn 0.5s ease-out;
}

@keyframes popIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.phone-success p {
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Barra inferior (home button) */
.phone-home-bar {
  width: 130px;
  height: 5px;
  background: var(--rose-deep);
  border-radius: 3px;
  margin: 0 auto 0.5rem;
  flex-shrink: 0;
  opacity: 0.3;
}

/* Responsive del popup */
@media (max-width: 480px) {
  .phone-popup {
    width: 300px;
    height: 600px;
  }

  .phone-body {
    padding: 0.5rem 1.2rem 1.2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MÓVIL — LEGIBILIDAD Y FACILIDAD DE USO
   Letter más grande y botones con área táctil generosa,
   pensado para clientas que navegan desde el teléfono.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Texto base más grande y con más aire */
  body {
    font-size: 17px;
    line-height: 1.7;
  }

  p {
    line-height: 1.75;
  }

  .lead {
    font-size: 1.1rem;
  }

  /* Enlaces del menú: área táctil generosa */
  nav a {
    padding: 1.1rem 0;
    font-size: 1.25rem;
  }

  /* Contacto: teléfono y dirección grandes y fáciles de tocar */
  .contact-lines p {
    font-size: 1.25rem;
    margin: 1.1rem 0;
  }

  .contact-lines a.contact-tap {
    padding: 0.6rem 1rem;
    font-size: 1.25rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }

  /* "Abrir en Google Maps" más grande */
  .map-link {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }

  /* Botón flotante de WhatsApp: más grande y visible */
  .whatsapp {
    padding: 0.9rem 1.4rem;
    right: 1rem;
    bottom: 1rem;
    min-height: 54px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .whatsapp span {
    font-size: 0.98rem;
    font-weight: 600;
  }

  .whatsapp svg {
    width: 26px;
    height: 26px;
  }

  /* Redes del footer fáciles de pulsar */
  .socials a {
    display: inline-block;
    padding: 0.6rem 1rem;
    font-size: 1.15rem;
    min-height: 44px;
  }

  /* Títulos de sección contenidos para que no se corten */
  .section-heading h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  /* Un poco más de aire entre secciones */
  .section {
    padding: 4rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .contact-lines p {
    font-size: 1.15rem;
  }

  .whatsapp span {
    font-size: 0.9rem;
  }
}
