/* ===================================
   SALON ARGANE — STYLESHEET
   =================================== */

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

:root {
  --dark:      #1a1a1a;
  --dark-2:    #111111;
  --gold:      #C9A84C;
  --gold-lt:   #E8C97A;
  --gold-dk:   #a07830;
  --white:     #FFFFFF;
  --cream:     #F7F4F0;
  --warm:      #F0EBE3;
  --gray:      #777777;
  --gray-lt:   #aaaaaa;
  --border:    #E8E4DE;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --radius:    12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--dark); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(160,120,48,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(0,0,0,0.25);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ---- EYEBROW / SECTION HEADER ---- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--gray); max-width: 500px; margin: 0 auto; }

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
}
/* transparent over hero */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.nav-logo span { color: var(--gold-lt); }
.nav.scrolled .nav-logo { color: var(--dark); }
.nav.scrolled .nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav.scrolled .nav-links a { color: rgba(0,0,0,0.65); }
.nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  transition: background 0.2s, transform 0.2s;
}
.nav-links .nav-cta:hover { background: var(--gold-dk); transform: translateY(-1px); color: var(--white); }
.nav.scrolled .nav-links .nav-cta { color: var(--white); }

/* Language Dropdown */
.lang-dropdown { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 5px 10px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
.lang-current:hover { background: rgba(255,255,255,0.18); color: var(--white); }
.nav.scrolled .lang-current {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.15);
  color: var(--dark);
}
.nav.scrolled .lang-current:hover { background: rgba(0,0,0,0.08); }
.lang-chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  min-width: 100px;
  z-index: 200;
}
.lang-dropdown.open .lang-menu { display: flex; flex-direction: column; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.15s;
  width: 100%;
  text-align: left;
}
.lang-option:hover { background: var(--cream); }
.lang-option.active { color: var(--gold); font-weight: 700; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px; height: 40px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: rgba(0,0,0,0.7);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-cta {
  margin-top: 12px;
  color: var(--gold);
  font-weight: 600;
  border: none;
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/DSC05942.jpg') center center / cover no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover::before { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,5,2,0.92) 0%,
    rgba(8,5,2,0.42) 45%,
    rgba(8,5,2,0.1) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 640px; }
.hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  display: block;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
  width: 100%;
  max-width: 480px;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}
.hero-badge:not(:first-child) {
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.badge-num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.badge-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* =====================
   SERVICIOS OVERVIEW
   ===================== */
.servicios {
  padding: 100px 0;
  background: var(--white);
}
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.servicio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.servicio-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}
.servicio-icon { font-size: 28px; margin-bottom: 16px; }
.servicio-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 600;
}
.servicio-card p { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* =====================
   GALERÍA — full bleed, photo-first
   ===================== */
.galeria {
  padding: 100px 0;
  background: var(--cream);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 6px;
  margin-top: 56px;
}
.gal-item {
  overflow: hidden;
  background: #ccc;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: contrast(1.07) brightness(1.08) saturate(1.12);
}
.gal-item:hover img { transform: scale(1.05); filter: contrast(1.1) brightness(1.1) saturate(1.15); }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

@media (max-width: 900px) {
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gal-tall { grid-row: span 2; }
  .gal-wide { grid-column: span 2; }
}
@media (max-width: 540px) {
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 4px; }
  .gal-tall { grid-row: span 2; }
  .gal-wide { grid-column: span 2; }
}

/* =====================
   NOSOTRAS
   ===================== */
.nosotras {
  padding: 100px 0;
  background: var(--white);
}
.nosotras-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nosotras-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.nosotras-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 18px;
}
.nosotras-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 36px;
}
.valor {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}
.valor-icon { color: var(--gold); font-size: 12px; }

.nosotras-visual { display: flex; flex-direction: column; gap: 20px; }
.smahane-photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.smahane-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.smahane-photo-wrap:hover .smahane-photo { transform: scale(1.04); }
.smahane-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10,8,6,0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.smahane-label strong {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--white);
  font-style: italic;
}
.smahane-label span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.nosotras-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.n-stat {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.n-stat strong {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.n-stat span { font-size: 12px; color: var(--gray); }

.cert-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  position: relative;
}
.cert-wrap img {
  width: 100%;
  display: block;
  filter: contrast(1.05) brightness(1.04);
  transition: transform 0.5s ease;
}
.cert-wrap:hover img { transform: scale(1.02); }
.cert-caption {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 10px;
  font-weight: 400;
}

/* =====================
   PRECIOS — LUXURY
   ===================== */
.precios {
  padding: 100px 0;
  background: #0a0806;
  position: relative;
}
.precios::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.precios::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.precios .section-header h2 {
  color: var(--white);
}
.precios .section-sub {
  color: rgba(255,255,255,0.35);
}

.precio-categoria {
  max-width: 680px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 16px;
  overflow: hidden;
}
.precio-categoria:last-of-type {
  margin-bottom: 0;
}

.categoria-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  background: rgba(201,168,76,0.07);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.categoria-icon { font-size: 16px; opacity: 0.7; }
.categoria-header h3 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.precio-lista { padding: 4px 0; }
.precio-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 24px;
  transition: background 0.2s;
}
.precio-item:last-child { border-bottom: none; }
.precio-item:hover { background: rgba(201,168,76,0.04); }

/* dotted leader line between name and price */
.precio-item::before {
  content: '';
  flex: 1;
  border-bottom: 1px dotted rgba(201,168,76,0.2);
  margin-bottom: 5px;
}

.precio-nombre {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.3px;
  order: -1;
  white-space: nowrap;
}
.precio-val {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 400;
  color: var(--gold-lt);
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.precio-val em {
  font-style: italic;
  font-size: 11px;
  font-weight: 300;
  color: rgba(201,168,76,0.45);
  margin-right: 3px;
  font-family: var(--font-body);
  letter-spacing: 1px;
}

.precios-cta {
  text-align: center;
  margin-top: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  border-top: none;
}
.precios-cta p {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

/* =====================
   CONTACTO
   ===================== */
.contacto {
  padding: 100px 0;
  background: var(--warm);
}
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contacto-info { display: flex; flex-direction: column; gap: 0; }
.contacto-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contacto-icon { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.contacto-item strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 4px;
}
.contacto-item span, .contacto-item a {
  font-size: 15px;
  color: var(--gray);
}
.contacto-item a:hover { color: var(--gold); }

.contacto-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacto-foto {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.contacto-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: contrast(1.05) brightness(1.05) saturate(1.08);
  transition: transform 0.6s ease;
}
.contacto-foto:hover img { transform: scale(1.03); }

.mapa-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--dark-2);
  border-top: none;
  padding: 48px 0 100px;
}
@media (min-width: 769px) { .footer { padding-bottom: 48px; } }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { text-align: right; }
.footer-copy p { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.8; }
.footer-tag { color: var(--gold) !important; font-style: italic; }

/* =====================
   WHATSAPP FLOATING BTN
   ===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 88px;
  right: 20px;
  width: 52px; height: 52px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 90;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* =====================
   MOBILE STICKY BAR
   ===================== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-bar-btn {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  background: var(--cream);
  color: var(--dark);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-bar-wa {
  background: var(--gold);
  color: var(--white);
  border-color: transparent;
}
.mobile-bar-wa:hover { background: var(--gold-dk); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .servicios-grid { grid-template-columns: repeat(3, 1fr); }

  .nosotras-inner { grid-template-columns: 1fr; gap: 48px; }
  .contacto-grid { grid-template-columns: 1fr; }
  .contacto-foto { height: 220px; }
  .mapa-wrap { height: 220px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .lang-current { font-size: 11px; padding: 4px 8px; }
  .servicios-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { align-items: flex-start; }
  .hero-inner { min-height: 100svh; justify-content: flex-end; padding: 80px 20px 60px; box-sizing: border-box; }
  .hero-badges { gap: 0; }
  .footer-inner { flex-direction: column; }
  .footer-copy { text-align: left; }
  .mobile-bar { display: flex; }
  .whatsapp-btn { bottom: 82px; right: 16px; width: 46px; height: 46px; }
  .nosotras-inner { grid-template-columns: 1fr; gap: 40px; }
  .nosotras-visual { order: -1; }
  .smahane-photo { aspect-ratio: 4/3; }
  .nosotras-stat-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .stat-card { padding: 14px 10px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 10px; }
  .contacto-grid { grid-template-columns: 1fr; }
  .precios { padding: 60px 0; }
  .precios-grid { gap: 16px; }
  .precio-categoria { border-radius: 12px; }
  .categoria-header { padding: 16px 18px; }
  .precio-item { padding: 12px 18px; }
  .section-eyebrow { font-size: 10px; }
}

@media (max-width: 540px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .nosotras-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .precio-categoria { border-radius: 10px; }
  .categoria-header { padding: 14px 16px; }
  .precio-item { padding: 11px 16px; }
  .precio-nombre { font-size: 13px; }
  .precio-val { font-size: 13px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .hero-badges { flex-direction: column; gap: 16px; border: none; padding: 0; margin-top: 32px; }
  .hero-badge { border: none !important; padding: 0 !important; }
  .nav-brand { font-size: 16px; }
  .nav-right { gap: 8px; }
  .lang-current { font-size: 11px; padding: 3px 7px; }
  .hero-title { font-size: clamp(34px, 10vw, 56px); }
  .hero-sub { font-size: 15px; }
  .contacto-foto { height: 180px; }
  .mapa-wrap { height: 200px; }
  .cert-wrap { max-width: 100%; }
  .footer-inner { gap: 24px; }
}
