
/* Reset básico */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }

/* Variables de color */
:root{
  --bg: #fbf8f3;
  --cream: #f3eade;
  --olive: #4f6050;       /* verde oscuro */
  --light-olive: #97ae99; /* verde claro */
  --tan: #cdb39b;         /* tan */
  --accent: #d78e6c;      /* color cálido para CTA */
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --white: #ffffff;
  --container: 1100px;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(15,15,15,0.08);
  --glass: rgba(255,255,255,0.6);
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Global layout */
body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing:antialiased;
  padding-bottom: 60px;
}

.container {
  width: 92%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Header */
.site-header {
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.4));
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(79,96,80,0.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand img{ height: 90px; display:block; }

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

.nav a{
  color:var(--olive);
  text-decoration:none;
  font-weight:600;
  padding:6px 10px;
  border-radius:6px;
}
.nav a:hover{ background:var(--cream); }

.header-cta .btn{ margin-left: 8px; }

/* Buttons */
.btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}
.btn-primary{
  background: linear-gradient(90deg,var(--olive),var(--light-olive));
  color: white;
  box-shadow: var(--shadow);
  margin-top: 2%;
}
.btn-ghost{
  background: transparent;
  border: 2px solid rgba(79,96,80,0.08);
  color: var(--olive);
}
.btn-sm { padding:8px 12px; font-size:0.95rem; }
button { margin-right: 88px; }

/* Hero */
.hero{
  padding: 100px 0;
  margin-top:6px;
  background-image: url("https://facialesmexicali.com/media/limpieza-facial-mexicali-banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 540px;
  gap: 30px;
  align-items:center;
}
.hero-content h1{
  font-family: 'Playfair Display', seqrif;
  font-size: clamp(28px, 4vw, 44px);
  color:var(--tan);
  margin-bottom:12px;
  line-height:1.05;
  text-shadow: #ffffff 1px 1px 6px;
}
.hero-content h1 span{ color: var(--olive); }
.hero-content p{ color:var(--muted); margin-bottom:18px; max-width:520px; }

/* Features */
.features{ padding: 36px 0; }
.features-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:18px;
}
.feature-card{
  background:var(--white);
  padding:18px;
  border-radius:12px;
  box-shadow: var(--shadow);
  text-align:center;
}
.feature-card img{ width:100%; height:140px; object-fit:cover; border-radius:10px; margin-bottom:12px; }
.feature-card h3{ color:var(--olive); margin-bottom:8px; }
.feature-card p{ color:var(--muted); font-size:0.95rem; }

/* Services */
.section-title{
  text-align:center;
  font-family: 'Playfair Display', serif;
  color:var(--olive);
  margin: 26px 0;
  font-size:28px;
}
.section-subtitle{
  text-align:center;
  color:var(--muted);
  margin-bottom:18px;
  font-size:1.1rem;
}
.services{ padding: 6px 0 28px 0; }
.services-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:16px;
}
.service{
  background: white;
  border-radius:12px;
  padding:14px;
  box-shadow: var(--shadow);
  text-align:center;
}
.service img{ width:100%; height:150px; object-fit:cover; border-radius:8px; margin-bottom:10px; }
.service h3{ color:var(--olive); margin-bottom:6px; }
.service p{ color:var(--muted); font-size:0.95rem; margin-bottom:10px; }
.service p span{ color:var(--olive);font-weight: bold; margin-bottom: 3px;}

/* Promo */
.promo{ padding:28px 0; }
.promo-card{
  display:flex;
  gap: 20px;
  background: linear-gradient(180deg, rgba(153,140,124,0.06), rgba(255,255,255,0.4));
  padding:18px;
  border-radius:14px;
  align-items:center;
  justify-content:space-between;
  box-shadow: var(--shadow);
}
.promo p span{ color:var(--olive);font-weight: bold; margin-bottom: 3px;}
.promo-image img{ width:360px; height:220px; object-fit:cover; border-radius:12px; }

/* Testimonials */
.testimonials{ padding: 30px 0; }
.testimonials-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.testimonial{
  background: linear-gradient(180deg, var(--white), rgba(255,255,255,0.98));
  padding:14px;
  border-radius:12px;
  box-shadow: var(--shadow);
  font-style:italic;
  color:var(--muted);
}
.testimonial cite{ display:block; margin-top:10px; font-style:normal; color:var(--olive); font-weight:600; }

/* Stats */
.stats{ padding: 26px 0; }
.stats-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align:center;
}
.stat h3{ color:var(--olive); font-size:28px; }
.stat p{ color:var(--muted); }

/* Booking */
.booking{ padding: 28px 0; }
.booking-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:20px;
  align-items:start;
}
.booking-form{
  background:white;
  padding:18px;
  border-radius:12px;
  box-shadow: var(--shadow);
}
.booking-form form label{ display:block; margin-top:8px; color:var(--muted); font-size:0.95rem; }
.booking-form input,
.booking-form select{
  width:100%;
  padding:10px;
  margin-top:6px;
  border-radius:8px;
  border:1px solid rgba(79,96,80,0.12);
}
.booking-map iframe{
  width:100%;
  height: 265px;
  border-radius:12px;
  border:0;
  box-shadow: var(--shadow);
  margin-top:10px;
}
.booking-info{
  background:linear-gradient(180deg,rgba(151,174,153,0.06),rgba(255,255,255,0.4));
  padding:18px 18px 18px 44px;
  border-radius:12px;
  box-shadow: var(--shadow);
}
.booking-info ul{ margin-top:10px; color:var(--muted); }
.booking-info li{ display: inline-block; margin-bottom: 6px; }

.booking-label{ 
  display: inline-block; 
  min-width: 90px; 
  color: var(--olive);
  font-weight: 600;
  vertical-align: top;
}

.booking-margins{ margin-left: 8px; display: inline-block; }



/* Gallery */
.gallery{ padding:24px 0; }
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:12px;
}
.gallery-grid img{ width:100%; height:200px; object-fit:cover; border-radius:10px; box-shadow: var(--shadow); }

/* Footer */
.site-footer{
  margin-top:40px;
  background: linear-gradient(180deg, rgba(79,96,80,0.04), rgba(255,255,255,0.02));
  padding:28px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  align-items:start;
}
.footer-about img{ height:90px; margin-bottom:10px; }
.footer-links ul{ list-style:none; }
.footer-links a{ color:var(--olive); text-decoration:none; display:block; margin-bottom:8px; }
.footer-contact p{ color:var(--muted); }
.footer-bottom{ text-align:center; padding:12px 0; color:var(--muted); }

/* Responsive */
@media (max-width: 992px){
  .hero-grid{ grid-template-columns: 1fr; }
  .features-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .booking-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 480px){
  .nav{ display:none; }
  .services-grid{ grid-template-columns: 1fr; }
  .hero-content p{ font-size:0.95rem; }
  .promo-image img{ width:100%; height:auto; }
}