/* ═══════════════════════════════════════════
   EMMA MASAJES · CSS Premium
   Paleta: arena cálida · salvia · blanco hueso
   Tipografía: Cormorant Garamond + Jost
═══════════════════════════════════════════ */

:root {
  --hueso: #faf8f4;
  --arena: #f0ebe0;
  --arena-med: #e2d9c8;
  --arena-dark: #c8baa8;
  --salvia: #7a9e7e;
  --salvia-dark: #5a7a5e;
  --salvia-pale: #e8f0e9;
  --marron: #3a2e26;
  --marron-med: #5c4e44;
  --gris: #8a8078;
  --gris-light: #b8b2aa;
  --blanco: #ffffff;
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Jost', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(58,46,38,0.08);
  --shadow-lg: 0 16px 48px rgba(58,46,38,0.12);
}

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

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

body {
  font-family: var(--f-body);
  background: var(--hueso);
  color: var(--marron);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ═══ NAVBAR ═══ */

.em-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: all .4s ease;
}

.em-nav.scrolled {
  padding: 12px 0;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(58,46,38,0.08);
}

.em-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.em-nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.em-nav-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.em-nav-text {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--marron);
}

.em-nav-text em {
  font-style: italic;
  color: var(--salvia-dark);
}

.em-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.em-nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .5px;
  color: rgba(58,46,38,0.65);
  text-decoration: none;
  transition: color .2s;
}

.em-nav-links a:hover {
  color: var(--salvia-dark);
}

.em-nav-cta {
  background: var(--salvia-dark) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  letter-spacing: .3px !important;
  opacity: 1 !important;
  transition: background .2s, transform .15s !important;
}

.em-nav-cta:hover {
  background: var(--salvia) !important;
  transform: translateY(-1px);
}

.em-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.em-nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--marron);
  transition: all .3s;
}

@media (max-width: 900px) {
  .em-nav-links {
    display: none;
  }
}

@media (max-width: 900px) {
  .em-nav-toggle {
    display: flex;
  }
}

@media (max-width: 900px) {
  .em-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250,248,244,0.98);
    backdrop-filter: blur(16px);
    padding: 24px 20px;
    gap: 18px;
    border-top: 1px solid var(--arena-med);
    box-shadow: 0 8px 32px rgba(58,46,38,0.1);
  }
}

/* ═══ HERO ═══ */

.em-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.em-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.em-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.em-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 115deg, rgba(250,248,244,0.97) 0%, rgba(240,235,224,0.88) 45%, rgba(250,248,244,0.45) 100% );
  z-index: 1;
}

.em-hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
}

.em-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 80px;
}

.em-hero-inner {
  max-width: 580px;
  animation: heroIn .9s cubic-bezier(.4,0,.2,1) both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.em-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--salvia-dark);
  margin-bottom: 20px;
}

.em-h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--marron);
  letter-spacing: -.5px;
  margin-bottom: 16px;
}

.em-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--salvia-dark);
}

.em-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--marron-med);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.em-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.em-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--salvia-dark);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .3px;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s;
}

.em-btn-primary:hover {
  background: var(--salvia);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(90,122,94,0.3);
}

.em-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--marron-med);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--arena-dark);
  transition: all .2s;
}

.em-btn-ghost:hover {
  border-color: var(--salvia-dark);
  color: var(--salvia-dark);
  background: var(--salvia-pale);
}

.em-hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.em-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--arena-med);
  color: var(--marron-med);
  font-size: 12px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.em-chip i {
  color: var(--salvia-dark);
  font-size: 11px;
}

/* Scroll indicator */

.em-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(58,46,38,0.25);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  text-decoration: none;
  animation: heroIn .9s .6s both;
}

.em-hero-scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--salvia-dark);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ═══ FRANJA ═══ */

.em-strip {
  overflow: hidden;
  background: var(--arena);
  padding: 14px 0;
  border-top: 1px solid var(--arena-med);
  border-bottom: 1px solid var(--arena-med);
}

.em-strip-inner {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  animation: stripScroll 18s linear infinite;
  width: max-content;
}

.em-strip-inner span {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--marron-med);
  letter-spacing: .5px;
}

.em-strip-dot {
  opacity: .4;
}

@keyframes stripScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══ SECCIONES BASE ═══ */

.em-sobre, .em-beneficios, .em-servicios, .em-galeria, .em-horarios, .em-ubicacion {
  padding: 100px 0;
}

.em-sobre {
  background: var(--blanco);
}

.em-beneficios {
  background: var(--salvia-pale);
}

.em-servicios {
  background: var(--hueso);
}

.em-galeria {
  background: var(--arena);
  padding-bottom: 100px;
}

.em-horarios {
  background: var(--blanco);
}

.em-ubicacion {
  background: var(--arena);
}

.em-section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--salvia-dark);
  margin-bottom: 12px;
}

.em-section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--salvia-dark);
  flex-shrink: 0;
}

.em-h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--marron);
  margin-bottom: 14px;
  letter-spacing: -.3px;
}

.em-h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--salvia-dark);
}

.em-divider {
  width: 36px;
  height: 1px;
  background: var(--salvia-dark);
  margin-bottom: 20px;
  opacity: .7;
}

.em-body-text {
  font-size: .95rem;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ═══ SOBRE – Imagen ═══ */

.em-img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.em-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.em-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 500px;
  background: var(--arena);
  border: 1.5px dashed var(--arena-dark);
  border-radius: var(--radius-lg);
  color: var(--gris-light);
}

.em-img-placeholder i {
  font-size: 40px;
}

.em-img-placeholder span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.em-img-deco-line {
  position: absolute;
  top: 16px;
  right: -16px;
  bottom: -16px;
  left: 16px;
  border: 1px solid var(--arena-dark);
  border-radius: var(--radius-lg);
  z-index: 0;
}

/* Feature list */

.em-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.em-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--marron-med);
  font-weight: 400;
}

.em-feature i {
  color: var(--salvia-dark);
  font-size: 12px;
  flex-shrink: 0;
}

/* ═══ BENEFICIOS ═══ */

.em-bene-card {
  background: #fff;
  border: 1px solid rgba(122,158,126,0.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: all .3s;
}

.em-bene-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(122,158,126,0.25);
}

.em-bene-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.em-bene-title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--marron);
  margin-bottom: 8px;
}

.em-bene-desc {
  font-size: .85rem;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.65;
}

/* ═══ SERVICIOS ═══ */

.em-serv-card {
  background: var(--blanco);
  border: 1px solid var(--arena-med);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: all .35s;
  position: relative;
}

.em-serv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--arena-dark);
}

.em-serv-featured {
  background: var(--marron);
  border-color: var(--marron);
}

.em-serv-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--salvia);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}

.em-serv-img {
  height: 200px;
  overflow: hidden;
  background: var(--arena);
}

.em-serv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.em-serv-card:hover .em-serv-img img {
  transform: scale(1.05);
}

.em-serv-body {
  padding: 24px;
}

.em-serv-num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--arena-dark);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.em-serv-featured .em-serv-num {
  color: rgba(255,255,255,0.15);
}

.em-serv-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--marron);
  margin-bottom: 10px;
}

.em-serv-featured .em-serv-title {
  color: #fff;
}

.em-serv-desc {
  font-size: .88rem;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.7;
  margin-bottom: 16px;
}

.em-serv-featured .em-serv-desc {
  color: rgba(255,255,255,0.6);
}

.em-serv-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.em-serv-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--gris-light);
}

.em-serv-meta i {
  font-size: 11px;
}

.em-serv-featured .em-serv-meta span {
  color: rgba(255,255,255,0.4);
}

.em-serv-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--salvia-dark);
  text-decoration: none;
  letter-spacing: .3px;
  border-bottom: 1px solid transparent;
  transition: all .2s;
  padding-bottom: 1px;
}

.em-serv-cta:hover {
  color: var(--marron);
  border-bottom-color: var(--marron);
  gap: 10px;
}

.em-serv-featured .em-serv-cta {
  color: var(--salvia);
}

.em-serv-featured .em-serv-cta:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ═══ GALERÍA ═══ */

.em-gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
}

.em-g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.em-g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s, filter .4s;
  filter: saturate(.85) brightness(.95);
}

.em-g-item:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}

.em-g-tall {
  grid-row: span 2;
}

.em-g-wide {
  grid-column: span 2;
}

.em-g-over {
  position: absolute;
  inset: 0;
  background: rgba(58,46,38,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}

.em-g-item:hover .em-g-over {
  opacity: 1;
}

.em-g-over span {
  font-family: var(--f-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  .em-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  .em-g-tall {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .em-g-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .em-g-item {
    height: 180px;
  }
}

/* Lightbox */

.em-lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,22,16,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.em-lb.on {
  display: flex;
}

.em-lb img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}

.em-lb-x {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}

.em-lb-x:hover {
  color: #fff;
}

.em-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all .2s;
}

.em-lb-nav:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.em-lb-prev {
  left: 14px;
}

.em-lb-next {
  right: 14px;
}

/* ═══ HORARIOS ═══ */

.em-horario-card {
  background: var(--blanco);
  border: 1px solid var(--arena-med);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.em-horario-header {
  background: var(--marron);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .5px;
}

.em-horario-header i {
  color: var(--salvia);
}

.em-turnos {
  padding: 8px 0;
}

.em-turno {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--arena);
  gap: 16px;
  transition: background .2s;
}

.em-turno:last-child {
  border-bottom: none;
}

.em-turno:hover {
  background: var(--hueso);
}

.em-turno-hora {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--marron);
  min-width: 90px;
  letter-spacing: -.3px;
}

.em-turno-label {
  font-size: .85rem;
  font-weight: 300;
  color: var(--gris);
  flex: 1;
}

.em-turno-cta {
  display: inline-flex;
  align-items: center;
  background: var(--salvia-pale);
  color: var(--salvia-dark);
  font-size: .8rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(90,122,94,0.2);
  transition: all .2s;
  white-space: nowrap;
}

.em-turno-cta:hover {
  background: var(--salvia-dark);
  color: #fff;
  border-color: transparent;
}

.em-horario-nota {
  background: var(--arena);
  padding: 14px 24px;
  font-size: .82rem;
  color: var(--gris);
  line-height: 1.6;
}

.em-horario-nota i {
  color: var(--salvia-dark);
  margin-right: 6px;
}

/* ═══ UBICACIÓN ═══ */

.em-ubi-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.em-ubi-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--marron-med);
  line-height: 1.6;
}

.em-ubi-row i {
  color: var(--salvia-dark);
  font-size: 16px;
  min-width: 20px;
  margin-top: 2px;
}

.em-ubi-row strong {
  color: var(--marron);
}

.em-ubi-row a {
  color: var(--salvia-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}

.em-ubi-row a:hover {
  color: var(--marron);
}

.em-mapa-wrap {
  position: relative;
}

.em-mapa-chip {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(250,248,244,0.95);
  border: 1px solid var(--arena-med);
  color: var(--marron);
  font-size: .82rem;
  padding: 8px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.em-mapa-chip i {
  color: var(--salvia-dark);
}

/* ═══ CTA FINAL ═══ */

.em-cta-final {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.em-cta-bg {
  position: absolute;
  inset: 0;
  background: var(--marron);
  z-index: 0;
}

.em-cta-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,158,126,0.15) 0%, transparent 70%);
}

.em-cta-bg::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,158,126,0.1) 0%, transparent 70%);
}

.em-cta-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  z-index: 1;
  pointer-events: none;
}

.em-cta-content {
  position: relative;
  z-index: 2;
}

.em-cta-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.3px;
}

.em-cta-title em {
  font-style: italic;
  color: #b5d0b8;
}

.em-cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 36px;
}

.em-cta-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}

.em-cta-wa-btn i {
  font-size: 20px;
}

.em-cta-wa-btn:hover {
  background: #1ebe5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.4);
}

.em-cta-nota {
  font-size: .8rem;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  letter-spacing: .5px;
}

/* ═══ FOOTER ═══ */

.em-footer {
  background: var(--marron);
  padding: 60px 0 24px;
  color: rgba(255,255,255,0.45);
}

.em-footer-brand {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}

.em-footer-brand em {
  font-style: italic;
  color: #b5d0b8;
}

.em-footer-desc {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.35);
}

.em-footer-socials {
  display: flex;
  gap: 10px;
}

.em-footer-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
}

.em-footer-socials a:hover {
  border-color: rgba(122,158,126,0.4);
  color: #b5d0b8;
  background: rgba(122,158,126,0.1);
}

.em-footer-col-t {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px;
}

.em-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.em-footer-links a {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color .2s;
}

.em-footer-links a:hover {
  color: #b5d0b8;
}

.em-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.em-footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,0.2);
}

/* ═══ WA FLOTANTE ═══ */

.em-wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform .2s;
  animation: waPulse 3s ease-in-out infinite;
}

.em-wa-float:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  }
  50% {
    box-shadow: 0 6px 30px rgba(37,211,102,0.65);
  }
}

/* ═══ SCROLL REVEAL ═══ */

.em-rev {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}

.em-rev.em-vis {
  opacity: 1;
  transform: none;
}

.em-rev-d1 {
  transition-delay: .1s;
}

.em-rev-d2 {
  transition-delay: .2s;
}

.em-rev-d3 {
  transition-delay: .3s;
}

.em-rev-d4 {
  transition-delay: .4s;
}

/* ═══ RESPONSIVE ═══ */

@media (max-width: 991px) {
  .em-sobre, .em-beneficios, .em-servicios, .em-galeria, .em-horarios, .em-ubicacion {
    padding: 70px 0;
  }
}

@media (max-width: 991px) {
  .em-img-deco-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .em-hero-btns {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .em-hero-btns a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .em-hero-chips {
    gap: 6px;
  }
}

@media (max-width: 576px) {
  .em-chip {
    font-size: 11px;
    padding: 5px 10px;
  }
}

@media (max-width: 576px) {
  .em-cta-final {
    padding: 80px 0;
  }
}

