/* ============================================
   Melissa Abad — Landing dinámica con fondos animados
   ============================================ */

:root{
  --bg-cream:        #F4E3D7;
  --bg-cream-soft:   #FAEFE6;
  --bg-cream-deep:   #EFD5C5;
  --bg-card:         #FBEAE0;
  --bg-card-soft:    #FDF3EC;
  --rose:            #C77B6A;
  --rose-dark:       #B86B5C;
  --rose-deep:       #A85B4D;
  --rose-soft:       #E9C5B9;
  --rose-pale:       #F2D5C8;
  --rose-mist:       #F8E0D4;
  --text-dark:       #1F1F1F;
  --text-body:       #5A5A5A;
  --text-muted:      #8A8A8A;
  --white:           #FFFFFF;
  --shadow-sm:       0 6px 20px rgba(199,123,106,0.08);
  --shadow-md:       0 14px 40px rgba(199,123,106,0.14);
  --shadow-lg:       0 28px 70px rgba(199,123,106,0.18);
  --radius-sm:       12px;
  --radius-md:       20px;
  --radius-lg:       28px;
  --radius-xl:       36px;
  --font-serif:      'Cormorant Garamond', Georgia, serif;
  --font-sans:       'Inter', system-ui, sans-serif;
  --ease:            cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  /* Prevenir doble-tap zoom y delays táctiles en móviles */
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body{
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ===== Prevenir auto-zoom en iOS al enfocar inputs =====
   iOS Safari hace zoom automáticamente si el font-size de un campo
   es < 16px. Forzamos un mínimo de 16px en TODOS los campos. */
input,
select,
textarea,
button{
  font-size: 16px;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
input,
select,
textarea{
  max-width: 100%;
  font-size: max(16px, 1rem);
}
/* En pantallas táctiles, garantizamos 16px exactos para evitar el zoom
   incluso si algún componente fuerza otra unidad */
@media (hover: none) and (pointer: coarse){
  input,
  select,
  textarea{
    font-size: 16px !important;
  }
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; padding: 0; margin: 0; }

.container{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ===== Typography ===== */
h1,h2,h3,h4{
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.12;
  margin: 0 0 .4em;
}
h1{ font-size: clamp(2.6rem, 4.8vw, 4rem); }
h2{ font-size: clamp(2.1rem, 3.6vw, 2.9rem); }
h3{ font-size: 1.55rem; }
em{ font-style: italic; color: var(--rose); font-weight: 500; }
p{ margin: 0 0 1em; }

.eyebrow{
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .3em;
  font-weight: 600;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ===== Reveal on scroll ===== */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ============================================
   FONDOS ANIMADOS GLOBALES
   ============================================ */
.bg-global{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  will-change: transform;
}
.orb-1{
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--rose-pale), transparent 70%);
  top: -120px; left: -120px;
  animation: orbDrift1 22s ease-in-out infinite;
}
.orb-2{
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--rose-mist), transparent 70%);
  bottom: -80px; right: -80px;
  animation: orbDrift2 26s ease-in-out infinite;
}
.orb-3{
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(233,197,185,.6), transparent 70%);
  top: 40%; left: 50%;
  animation: orbDrift3 30s ease-in-out infinite;
}
@keyframes orbDrift1{
  0%,100%{ transform: translate(0,0) scale(1); }
  33%{ transform: translate(120px,80px) scale(1.1); }
  66%{ transform: translate(60px,160px) scale(.95); }
}
@keyframes orbDrift2{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-140px,-100px) scale(1.15); }
}
@keyframes orbDrift3{
  0%,100%{ transform: translate(-50%,-50%) scale(1); }
  33%{ transform: translate(-30%,-60%) scale(1.1); }
  66%{ transform: translate(-70%,-40%) scale(.9); }
}

/* Blobs locales por sección */
.section-bg, .hero-bg, .agenda-bg{
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  will-change: transform;
}
.blob-a{
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--rose-soft), transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 18s ease-in-out infinite;
}
.blob-b{
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--rose-mist), transparent 70%);
  bottom: -80px; left: 30%;
  animation: blobFloat 22s ease-in-out infinite reverse;
}
.blob-c{
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--rose-pale), transparent 70%);
  top: -120px; left: -100px;
  animation: blobFloat 24s ease-in-out infinite;
}
.blob-d{
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--rose-mist), transparent 70%);
  bottom: -80px; right: -60px;
  animation: blobFloat 20s ease-in-out infinite reverse;
}
@keyframes blobFloat{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(60px,40px) scale(1.1); }
}

/* ===== Botones ===== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary{
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(199,123,106,.28);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 34px rgba(199,123,106,.38); }
.btn-outline{
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-outline:hover{
  background: var(--rose);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(199,123,106,.25);
}
.btn-light{
  background: var(--white);
  color: var(--rose);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.btn-light:hover{ transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,.15); }

/* ===== Iconos circulares ===== */
.icon-circle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rose-mist);
  color: var(--rose);
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.icon-circle.large{ width: 74px; height: 74px; }
.icon-circle.small{ width: 40px; height: 40px; }
.icon-outline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  flex-shrink: 0;
}

/* ===== Section heads ===== */
.section-head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-head h2{ margin-bottom: .6rem; }
.section-head p{ color: var(--text-body); font-size: 1rem; }
.heart-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 1.2rem;
}
.heart-divider span{
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--rose) 50%, transparent);
}

/* ===========================================
   HEADER
   =========================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,227,215,.85);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(199,123,106,.10);
  transition: padding .3s var(--ease), background .3s;
}
.site-header.is-scrolled{
  background: rgba(250,239,230,.95);
  box-shadow: 0 4px 20px rgba(199,123,106,.08);
}
.header-inner{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .9rem 28px;
}
.logo img{ height: 80px; width: auto; transition: transform .3s var(--ease); }
.logo:hover img{ transform: scale(1.04); }

.main-nav{
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin: 0 auto;
}
.main-nav a{
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 400;
  position: relative;
  padding: .3rem 0;
  transition: color .2s;
}
.main-nav a::after{
  content:'';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: width .25s var(--ease), left .25s var(--ease);
}
.main-nav a:hover,
.main-nav a.is-active{ color: var(--rose); }
.main-nav a:hover::after,
.main-nav a.is-active::after{ width: 100%; left: 0; }

.header-actions{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-dark);
  font-size: .92rem;
  font-weight: 500;
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1.5px solid rgba(199,123,106,.25);
  background: rgba(255,255,255,.5);
  transition: all .25s var(--ease);
}
.header-phone:hover{
  background: var(--rose-mist);
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}
.phone-ico{
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-cta{ padding: .75rem 1.4rem; font-size: .9rem; }

.menu-toggle{
  display: none;
  background: transparent;
  border: 0;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.menu-toggle span{
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

/* ===========================================
   HERO
   =========================================== */
.hero{
  position: relative;
  background: var(--bg-cream);
  overflow: hidden;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: stretch;
}
.hero-wrap{
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  align-items: center;
  gap: 0;
  z-index: 2;
}
.hero-text{
  padding: 4rem 4rem 4rem 9rem;
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.hero-text h1{
  font-size: clamp(2.6rem, 4.6vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.hero-lead{
  font-size: 1.02rem;
  color: var(--text-body);
  max-width: 460px;
  margin-bottom: 2rem;
}
.hero-actions{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-features{
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-features li{
  display: flex;
  align-items: center;
  gap: .85rem;
}
.feat-text{
  font-size: .92rem;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Hojas decorativas (más grandes) */
.leaf-deco{
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: .65;
}
.leaf-deco img{ width: 100%; }
.leaf-left{
  left: -40px; bottom: 30px; width: 240px;
  transform: rotate(-25deg);
  animation: floatLeaf 7s ease-in-out infinite;
}
.leaf-right{
  right: -50px; top: 18%; width: 300px;
  opacity: .55;
  animation: floatLeaf 9s ease-in-out infinite reverse;
}
.leaf-tl{ left: 20px; top: 40px; width: 180px; opacity: .45; transform: rotate(-30deg); animation: floatLeaf 8s ease-in-out infinite; }
.leaf-br{ right: 20px; bottom: 20px; width: 200px; opacity: .45; transform: rotate(160deg); animation: floatLeaf 10s ease-in-out infinite reverse; }
.leaf-ag-l{ left: -50px; bottom: 40px; width: 230px; opacity: .55; transform: rotate(-20deg); animation: floatLeaf 9s ease-in-out infinite; z-index: 1; }
.leaf-ag-r{ right: -40px; top: 8%; width: 200px; opacity: .45; transform: rotate(165deg); animation: floatLeaf 11s ease-in-out infinite reverse; z-index: 1; }

@keyframes floatLeaf{
  0%,100%{ transform: translateY(0) rotate(var(--rot, -25deg)); }
  50%{ transform: translateY(-18px) rotate(calc(var(--rot, -25deg) + 4deg)); }
}

.hero-photo{
  position: relative;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: stretch;
}
.hero-photo-svg{
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: block;
}

/* ===========================================
   SERVICIOS
   =========================================== */
.services{
  background: var(--bg-cream-soft);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card{
  background: var(--bg-card-soft);
  border-radius: var(--radius-md);
  padding: 0;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(199,123,106,.06);
}
.service-card:hover{
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: rgba(199,123,106,.15);
}
.service-card .card-media{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rose-mist);
}
.service-card .card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease), filter .35s var(--ease);
}
.service-card:hover .card-media img{ transform: scale(1.06); filter: saturate(1.08); }
.card-media-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,31,31,0) 35%, rgba(31,31,31,.32) 100%),
    linear-gradient(135deg, rgba(199,123,106,.12), rgba(199,123,106,0) 60%);
  pointer-events: none;
}
.card-icon-badge{
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(40,18,12,.22);
  border: 1px solid rgba(255,255,255,.7);
  transition: transform .35s var(--ease), background .35s, color .35s;
  z-index: 2;
}
.service-card:hover .card-icon-badge{
  transform: translateX(-50%) scale(1.08) rotate(-4deg);
  background: var(--rose);
  color: var(--white);
}
.service-card .card-body{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem 1.5rem 1.8rem;
  flex: 1;
}
.service-card h3{
  font-size: 1.2rem;
  margin-bottom: .7rem;
  line-height: 1.25;
}
.service-card p{
  font-size: .92rem;
  color: var(--text-body);
  margin: 0 0 1.3rem;
  flex: 1;
}
.more-link{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--rose);
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(199,123,106,.3);
  background: transparent;
  transition: all .25s var(--ease);
  margin-top: auto;
  cursor: pointer;
  font-family: inherit;
}
.more-link svg{ transition: transform .25s var(--ease); }
.more-link:hover{
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(199,123,106,.25);
}
.more-link:hover svg{ transform: translateX(3px); }
.more-link:focus-visible{
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

/* ===========================================
   MODAL DE SERVICIO
   =========================================== */
.service-modal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.service-modal.is-open{
  visibility: visible;
  opacity: 1;
  transition: opacity .35s var(--ease);
}
.service-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(40,18,12,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.service-modal-dialog{
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  box-shadow: 0 40px 90px rgba(40,18,12,.35);
  transform: translateY(20px) scale(.97);
  transition: transform .45s var(--ease);
}
.service-modal.is-open .service-modal-dialog{ transform: translateY(0) scale(1); }

.service-modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  color: var(--rose-deep);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(40,18,12,.18);
  transition: transform .25s var(--ease), background .25s;
}
.service-modal-close:hover{ background: var(--rose); color: var(--white); transform: rotate(90deg); }
.service-modal-close:focus-visible{ outline: 2px solid var(--white); outline-offset: 3px; }

.service-modal-media{
  position: relative;
  overflow: hidden;
  background: var(--rose-mist);
  min-height: 280px;
}
.service-modal-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-modal-media-fade{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(40,18,12,0) 55%, rgba(40,18,12,.35) 100%),
    linear-gradient(90deg, rgba(199,123,106,.10), rgba(199,123,106,0) 55%);
  pointer-events: none;
}

.service-modal-content{
  padding: 2.4rem 2.2rem 2.2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: calc(100vh - 48px);
  scrollbar-width: thin;
  scrollbar-color: rgba(199,123,106,.45) transparent;
}
.service-modal-content::-webkit-scrollbar{ width: 8px; }
.service-modal-content::-webkit-scrollbar-thumb{
  background: rgba(199,123,106,.45);
  border-radius: 8px;
}
.service-modal-content::-webkit-scrollbar-thumb:hover{ background: var(--rose); }
.service-modal-content .eyebrow{ margin-bottom: .6rem; }
.service-modal-content h3{
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  margin: 0 0 .4rem;
  line-height: 1.18;
}
.service-modal-divider{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: .2rem 0 1.2rem;
}
.service-modal-divider span{
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose) 50%, transparent);
  max-width: 80px;
}
.service-modal-lead{
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rose-deep);
  font-size: 1.08rem;
  line-height: 1.45;
  margin: 0 0 1rem;
}
.service-modal-body{
  color: var(--text-body);
  font-size: .96rem;
  line-height: 1.65;
  margin-bottom: 1.6rem;
}
.service-modal-body p{ margin: 0 0 .85rem; }
.service-modal-body p:last-child{ margin-bottom: 0; }

.service-modal-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: auto;
}
.service-modal-actions .btn{ flex: 1 1 auto; justify-content: center; }

body.modal-open{ overflow: hidden; }

@media (max-width: 820px){
  .service-modal{ padding: 0; align-items: stretch; }
  .service-modal-dialog{
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    width: 100%;
  }
  .service-modal-media{ min-height: 0; }
  .service-modal-content{
    padding: 1.6rem 1.4rem 1.6rem;
    max-height: none;
  }
  .service-modal-content h3{ font-size: 1.5rem; }
  .service-modal-lead{ font-size: 1rem; }
  .service-modal-body{ font-size: .92rem; }
  .service-modal-close{ top: 12px; right: 12px; width: 38px; height: 38px; }
  .service-modal-actions .btn{ width: 100%; }
}
@media (max-width: 480px){
  .service-modal-dialog{ grid-template-rows: 180px 1fr; }
  .service-modal-content{ padding: 1.3rem 1.1rem 1.3rem; }
}

/* ===========================================
   SOBRE MI
   =========================================== */
.about{
  position: relative;
  background: var(--bg-cream);
  padding: 6rem 0;
  overflow: hidden;
}
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-image{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-image::after{
  content:'';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 60px rgba(199,123,106,.1);
  pointer-events: none;
}
.about-image img{
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.about-image:hover img{ transform: scale(1.04); }
.about-text h2{ margin-top: .8rem; }
.about-text p{
  max-width: 480px;
  color: var(--text-body);
  margin-bottom: 1.4rem;
}
.about-second{ margin-bottom: 0; }

/* ===========================================
   BENEFICIOS
   =========================================== */
.benefits{
  background: var(--bg-cream-soft);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.benefits .section-head{ margin-bottom: 3rem; }
.benefits-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 1050px;
  margin: 0 auto;
}
.benefit{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform .3s var(--ease);
}
.benefit:hover{ transform: translateY(-6px); }
.benefit:hover .icon-circle{ background: var(--rose); color: var(--white); transform: scale(1.08); }
.benefit p{
  font-size: .95rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.35;
}

/* ===========================================
   TESTIMONIO ÚNICO
   =========================================== */
.testimonial-section{
  background: var(--bg-cream);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.testimonial-card{
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-card-soft) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(199,123,106,.10);
  z-index: 2;
}
.quote-mark-big{
  position: absolute;
  top: 14px;
  left: 30px;
  font-family: var(--font-serif);
  font-size: 6.5rem;
  line-height: 1;
  color: var(--rose);
  opacity: .25;
  transform: rotate(180deg);
}
.t-photo-wrap{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(199,123,106,.25);
  border: 5px solid var(--white);
  flex-shrink: 0;
  position: relative;
}
.t-photo-wrap::after{
  content:'';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed var(--rose);
  opacity: .4;
  animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow{ to { transform: rotate(360deg); } }
.t-photo-wrap img{ width: 100%; height: 100%; object-fit: cover; }

.t-body{ position: relative; }
.stars-big{
  color: #E5A089;
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: .8rem;
}
.t-quote{
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text-dark);
  font-style: italic;
  margin: 0 0 1.5rem;
}

/* Audio player */
.audio-player{
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-cream-soft);
  border-radius: 18px;
  padding: .85rem 1.1rem .85rem .85rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(199,123,106,.15);
}
.audio-btn{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 16px rgba(199,123,106,.35);
}
.audio-btn:hover{ transform: scale(1.06); box-shadow: 0 8px 20px rgba(199,123,106,.45); }
.audio-btn .ico-pause{ display: none; }
.audio-btn.is-playing .ico-play{ display: none; }
.audio-btn.is-playing .ico-pause{ display: block; }
.audio-info{ flex: 1; min-width: 0; }
.audio-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .35rem;
}
.audio-label{ font-size: .82rem; color: var(--text-dark); font-weight: 500; }
.audio-time{ font-size: .75rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.audio-bar{
  position: relative;
  height: 28px;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(199,123,106,.08);
}
.audio-progress{
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--rose-pale), var(--rose));
  transition: width .15s linear;
  z-index: 1;
}
.audio-waves{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  z-index: 2;
  pointer-events: none;
}
.audio-waves span{ display: block; width: 3px; border-radius: 2px; background: var(--rose); opacity: .55; }
.audio-waves span:nth-child(1){ height: 30%; }
.audio-waves span:nth-child(2){ height: 55%; }
.audio-waves span:nth-child(3){ height: 75%; }
.audio-waves span:nth-child(4){ height: 45%; }
.audio-waves span:nth-child(5){ height: 85%; }
.audio-waves span:nth-child(6){ height: 60%; }
.audio-waves span:nth-child(7){ height: 35%; }
.audio-waves span:nth-child(8){ height: 70%; }
.audio-waves span:nth-child(9){ height: 90%; }
.audio-waves span:nth-child(10){ height: 50%; }
.audio-waves span:nth-child(11){ height: 65%; }
.audio-waves span:nth-child(12){ height: 40%; }
.audio-waves span:nth-child(13){ height: 80%; }
.audio-waves span:nth-child(14){ height: 55%; }
.audio-waves span:nth-child(15){ height: 30%; }
.audio-waves span:nth-child(16){ height: 70%; }
.audio-waves span:nth-child(17){ height: 95%; }
.audio-waves span:nth-child(18){ height: 60%; }
.audio-waves span:nth-child(19){ height: 35%; }
.audio-waves span:nth-child(20){ height: 75%; }
.audio-waves span:nth-child(21){ height: 50%; }
.audio-waves span:nth-child(22){ height: 80%; }
.audio-waves span:nth-child(23){ height: 45%; }
.audio-waves span:nth-child(24){ height: 65%; }
.audio-waves span:nth-child(25){ height: 35%; }
.audio-waves span:nth-child(26){ height: 70%; }
.audio-waves span:nth-child(27){ height: 90%; }
.audio-waves span:nth-child(28){ height: 55%; }
.audio-waves span:nth-child(29){ height: 30%; }
.audio-waves span:nth-child(30){ height: 60%; }
.audio-player.is-playing .audio-waves span{ animation: wavePulse 1.1s ease-in-out infinite; }
.audio-player.is-playing .audio-waves span:nth-child(2n){ animation-delay: .15s; }
.audio-player.is-playing .audio-waves span:nth-child(3n){ animation-delay: .3s; }
.audio-player.is-playing .audio-waves span:nth-child(4n){ animation-delay: .45s; }
@keyframes wavePulse{
  0%,100%{ transform: scaleY(.6); }
  50%{ transform: scaleY(1.2); }
}
.audio-rate{
  background: var(--rose);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .55rem;
  border-radius: 999px;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.t-sign h4{
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}
.t-sign span{ font-size: .82rem; color: var(--text-muted); }

/* Stack de testimonios (varios cards apilados) */
.testimonials-stack{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ===========================================
   UBICACIÓN
   =========================================== */
.location-section{
  background: var(--bg-cream-soft);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.location-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.location-info{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(199,123,106,.12);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.location-card{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(199,123,106,.15);
}
.location-icon{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(199,123,106,.28);
}
.location-text h3{
  font-size: 1.35rem;
  margin: 0 0 .25rem;
  color: var(--text-dark);
}
.location-text p{
  margin: 0;
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.45;
}
.location-perks{
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.location-perks li{
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .92rem;
  color: var(--text-dark);
}
.location-actions{
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: .4rem;
}
.location-actions .btn{ flex: 1 1 auto; justify-content: center; }
.location-map{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(199,123,106,.12);
  background: var(--rose-mist);
}
.location-map iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===========================================
   AGENDA — foto grande de fondo
   =========================================== */
.agenda-section{
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-cream-soft) 60%, var(--rose-mist) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.agenda-bg{ z-index: 0; }
.agenda-blob{
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, var(--rose-mist), transparent 50%),
    radial-gradient(circle at 75% 70%, var(--rose-pale), transparent 55%);
  animation: bgShift 25s ease-in-out infinite;
}
@keyframes bgShift{
  0%,100%{ background-position: 0% 0%, 100% 100%; }
  50%{ background-position: 20% 30%, 80% 70%; }
}

.agenda-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.agenda-left{ position: relative; }
.agenda-left .eyebrow{ margin-bottom: .9rem; }
.agenda-left h2{
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 1.2rem;
  line-height: 1.08;
}
.agenda-left > p{
  max-width: 440px;
  color: var(--text-body);
  margin-bottom: 2.2rem;
}

/* Bloque inferior: perks + foto lado a lado */
.agenda-perks-photo{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 1.6rem;
  align-items: center;
}
.agenda-perks{
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.agenda-perks li{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(199,123,106,.18);
}
.agenda-perks li:last-child{ border-bottom: 0; padding-bottom: 0; }
.perk-text{ font-size: .92rem; color: var(--text-dark); line-height: 1.35; }

/* Marco decorativo con foto inline */
.agenda-photo-frame{
  position: relative;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  aspect-ratio: 3 / 4;
  max-width: 320px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}
.frame-blob{
  position: absolute;
  inset: 8% 4% 0 4%;
  background: linear-gradient(160deg, var(--rose-pale) 0%, var(--rose-mist) 60%, var(--rose-soft) 100%);
  border-radius: 200px 200px 40px 40px;
  z-index: 0;
  box-shadow: 0 30px 60px -20px rgba(199,123,106,.35);
  animation: frameMorph 8s ease-in-out infinite;
}
@keyframes frameMorph{
  0%,100%{ border-radius: 200px 200px 40px 40px; transform: scale(1); }
  50%{ border-radius: 180px 220px 50px 30px; transform: scale(1.02); }
}
.frame-ring{
  position: absolute;
  top: 4%; left: -6%;
  width: 80px; height: 80px;
  border: 1.5px dashed var(--rose);
  border-radius: 50%;
  opacity: .5;
  animation: spinSlow 26s linear infinite;
  z-index: 1;
}
.frame-badge{
  position: absolute;
  top: 12%;
  right: -8%;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(199,123,106,.25);
  z-index: 3;
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat{
  0%,100%{ transform: translateY(0) rotate(-6deg); }
  50%{ transform: translateY(-8px) rotate(6deg); }
}
.agenda-photo{
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 18px 28px rgba(199,123,106,.25));
  animation: photoFloat 6s ease-in-out infinite;
}
@keyframes photoFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

.agenda-card{
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(199,123,106,.12);
}
.agenda-card h3{
  text-align: center;
  letter-spacing: .15em;
  font-size: 1.35rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--rose);
  margin-bottom: .3rem;
}
.agenda-divider{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
}
.agenda-divider span{ width: 44px; height: 1px; background: var(--rose); }

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}
.field label{
  display: block;
  font-size: .85rem;
  color: var(--text-dark);
  margin-bottom: .5rem;
  font-weight: 500;
}
.input-wrap{ position: relative; display: flex; align-items: center; }
.input-wrap svg{ position: absolute; left: 14px; color: var(--rose); pointer-events: none; z-index: 1; }
.input-wrap input,
.input-wrap select,
.input-wrap textarea{
  width: 100%;
  padding: .9rem 1rem .9rem 2.6rem;
  border: 1.5px solid rgba(199,123,106,.2);
  border-radius: 999px;
  background: var(--bg-cream-soft);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
}
.input-wrap select{ padding-left: 1.1rem; }
.input-wrap select{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C77B6A' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus{
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(199,123,106,.1);
}
.input-wrap-textarea{ align-items: stretch; }
.input-wrap-textarea svg{ top: 14px; }
.input-wrap textarea{
  border-radius: 22px;
  resize: vertical;
  min-height: 48px;
  line-height: 1.45;
  font-family: var(--font-sans);
}
.field-opt{
  font-size: .72rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
}

.slots-block{ margin-bottom: 1.4rem; }
.slots-block > label{ display: block; font-size: .85rem; color: var(--text-dark); margin-bottom: .8rem; font-weight: 500; }
.slots-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
}
.slot{
  padding: .75rem .5rem;
  border-radius: 999px;
  border: 1.5px solid rgba(199,123,106,.25);
  background: var(--white);
  color: var(--text-dark);
  font-size: .88rem;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  transition: all .2s var(--ease);
}
.slot:hover:not(.slot-busy){
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}
.slot.slot-active{
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(199,123,106,.3);
}
.slot.slot-active::after{
  content:'';
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.slot.slot-busy{
  background: #EAEAEA;
  color: #B0B0B0;
  cursor: not-allowed;
  text-decoration: line-through;
  border-color: transparent;
}
.slot.slot-busy::after{ content:'🔒'; font-size: .7rem; text-decoration: none; display: inline-block; }

.legend{
  display: flex;
  gap: 1.3rem;
  margin: 1.2rem 0 1.4rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--text-body);
}
.legend span{ display: inline-flex; align-items: center; gap: .45rem; }
.legend .dot{ width: 12px; height: 12px; border-radius: 50%; }
.dot-disp{ background: var(--bg-card); border: 1px solid rgba(199,123,106,.25); }
.dot-sel{ background: var(--rose); }
.dot-busy{ background: #D9D9D9; }

.confirm-btn{
  width: 100%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border: 0;
  padding: 1.1rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .14em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 10px 26px rgba(199,123,106,.32);
}
.confirm-btn:hover{ transform: translateY(-3px); box-shadow: 0 16px 34px rgba(199,123,106,.4); }

/* ===========================================
   CTA STRIP
   =========================================== */
.cta-strip{ background: var(--bg-cream-soft); padding: 1rem 0 4rem; }
.cta-card{
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.6rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.6rem;
  position: relative;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.cta-icon{
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-text h3{ color: var(--white); margin-bottom: .3rem; font-size: 1.7rem; }
.cta-text p{ color: rgba(255,255,255,.92); margin: 0; font-size: .94rem; }
.cta-leaf{
  position: absolute;
  right: -30px; bottom: -50px;
  width: 250px;
  opacity: .3;
  pointer-events: none;
}

/* ===========================================
   VALUES STRIP
   =========================================== */
.values-strip{
  background: var(--bg-cream-soft);
  padding: 2.2rem 0;
  border-top: 1px solid rgba(199,123,106,.08);
  border-bottom: 1px solid rgba(199,123,106,.08);
}
.values-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.value{
  display: flex;
  align-items: center;
  gap: .9rem;
  transition: transform .25s;
}
.value:hover{ transform: translateY(-3px); }
.value p{ margin: 0; font-size: .88rem; color: var(--text-body); line-height: 1.3; }
.value p strong{ color: var(--text-dark); font-weight: 500; }

/* ===========================================
   FOOTER
   =========================================== */
.site-footer{
  background: var(--bg-cream-soft);
  padding: 4rem 0 1.5rem;
  color: var(--text-body);
  position: relative;
  z-index: 1;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-logo{ height: 110px; width: auto; margin-bottom: 1rem; }
.socials{ display: flex; gap: .6rem; }
.socials a{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  transition: background .2s, color .2s, transform .2s;
}
.socials a:hover{ background: var(--rose); color: var(--white); transform: translateY(-3px); }

.footer-col h4{
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .25em;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.nav-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.nav-cols ul li{ padding: .35rem 0; font-size: .9rem; }
.nav-cols ul li a{ color: var(--text-body); transition: color .15s; }
.nav-cols ul li a:hover{ color: var(--rose); }

.contact-list li{
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .4rem 0;
  font-size: .9rem;
  color: var(--text-body);
}
.contact-ico{
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list li a{ color: var(--text-body); }
.contact-list li a:hover{ color: var(--rose); }

.footer-quote{
  background: var(--bg-card-soft);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  position: relative;
  overflow: hidden;
}
.footer-quote p{
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.footer-quote-leaf{
  position: absolute;
  right: -20px;
  bottom: -25px;
  width: 110px;
  opacity: .55;
  pointer-events: none;
}

.footer-bottom{
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(199,123,106,.12);
  text-align: center;
}
.footer-bottom p{
  margin: 0;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ===========================================
   FLOATING WHATSAPP
   =========================================== */
.float-wa{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  z-index: 60;
  transition: transform .25s var(--ease);
  animation: pulseWa 2.4s infinite;
}
.float-wa:hover{ transform: scale(1.08); }
@keyframes pulseWa{
  0%{ box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100%{ box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1200px){
  .header-phone{ padding: .5rem .85rem; font-size: .88rem; }
}

@media (max-width: 1100px){
  .hero-text{ padding: 3rem 2.5rem 3rem 3rem; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 980px){
  .hero{ min-height: auto; }
  .hero-wrap{ grid-template-columns: 1fr; }
  /* En móvil: la imagen del hero VA ARRIBA del texto */
  .hero-photo{ order: 0; min-height: 380px; }
  .hero-photo-svg{ min-height: 380px; }
  .hero-text{
    order: 1;
    padding: 2.5rem 1.5rem 3rem;
    text-align: center;
    margin: 0 auto;
  }
  .hero-features{ justify-content: center; }
  .hero-actions{ justify-content: center; }

  .about-grid,
  .agenda-grid,
  .location-grid{
    grid-template-columns: 1fr;
  }
  .location-map{ min-height: 320px; }
  .location-info{ padding: 1.6rem 1.4rem 1.8rem; }
  .agenda-left h2{ text-align: left; }
  .agenda-left > p{ max-width: 100%; }

  /* En móvil el bloque inferior sigue siendo side-by-side: perks | foto */
  .agenda-perks-photo{
    grid-template-columns: minmax(0,1fr) minmax(0,180px);
    gap: 1rem;
    align-items: center;
  }
  .agenda-photo-frame{ max-width: 180px; }
  .frame-badge{ width: 42px; height: 42px; }
  .frame-ring{ width: 60px; height: 60px; }

  .services-grid,
  .benefits-grid,
  .values-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .main-nav{
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-cream-soft);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: .8rem;
    box-shadow: var(--shadow-sm);
    margin: 0;
  }
  .main-nav.is-open{ display: flex; }
  .menu-toggle{ display: flex; }
  .header-cta{ padding: .6rem 1rem; font-size: .82rem; }
  .header-phone{ display: inline-flex; padding: .45rem .8rem; font-size: .82rem; gap: .4rem; }
  .header-phone .phone-ico{ width: 26px; height: 26px; }
  .logo img{ height: 64px; }

  .about-image img{ height: 380px; }
  .cta-card{ grid-template-columns: 1fr; text-align: center; padding: 2rem; }
  .cta-icon{ margin: 0 auto; }
  .testimonial-card{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.3rem 1.6rem;
  }
  .t-photo-wrap{ margin: 0 auto; width: 160px; height: 160px; }
  .audio-player{ text-align: left; }

  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand{ grid-column: span 2; }
  .footer-quote{ grid-column: span 2; }

  /* Plantitas: redimensionar para móvil */
  .leaf-left{ width: 160px; bottom: 10px; }
  .leaf-right{ width: 180px; }
  .leaf-tl, .leaf-br{ width: 130px; }
  .leaf-ag-l, .leaf-ag-r{ width: 150px; }
}

@media (max-width: 580px){
  h1{ font-size: 2.1rem; }
  h2{ font-size: 1.75rem; }
  .container{ padding: 0 20px; }
  .services-grid{
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .service-card .card-media{ aspect-ratio: 16 / 9; }
  .service-card .card-body{ padding: 2.2rem 1.3rem 1.6rem; }
  .benefits-grid,
  .values-grid,
  .form-row,
  .slots-grid{
    grid-template-columns: 1fr 1fr;
  }
  .services, .about, .benefits, .testimonial-section, .location-section{ padding: 4rem 0; }
  .agenda-section{ padding: 4rem 0 5rem; }
  .location-actions .btn{ width: 100%; }
  .location-map{ min-height: 280px; }
  .agenda-card{ padding: 1.8rem 1.3rem; }
  .agenda-perks-photo{
    grid-template-columns: minmax(0,1fr) minmax(0,140px);
    gap: .8rem;
  }
  .agenda-photo-frame{ max-width: 140px; }
  .frame-badge{ width: 36px; height: 36px; }
  .frame-ring{ width: 48px; height: 48px; }
  .agenda-perks{ gap: .9rem; }
  .agenda-perks li{ padding-bottom: .9rem; }
  .perk-text{ font-size: .85rem; }
  .agenda-perks .icon-circle{ width: 40px; height: 40px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-brand, .footer-quote{ grid-column: span 1; }
  .nav-cols{ grid-template-columns: 1fr 1fr; }
  .float-wa{ width: 50px; height: 50px; right: 14px; bottom: 14px; }
  .t-quote{ font-size: 1.1rem; }
  .header-inner{ gap: .5rem; padding: .7rem 16px; }
  .header-actions{ gap: .5rem; }
  .header-cta{ padding: .5rem .8rem; font-size: .76rem; }
  .header-cta svg{ display: none; }
  .header-phone{ padding: .4rem .65rem; font-size: .76rem; gap: .35rem; }
  .header-phone .phone-ico{ width: 22px; height: 22px; }
  .header-phone .phone-ico svg{ width: 12px; height: 12px; }
  .logo img{ height: 52px; }
  .leaf-left{ width: 120px; opacity: .4; }
  .leaf-right{ width: 130px; opacity: .35; }
}
