/* ============= ESTILOS COMPARTIDOS DE PÁGINAS DE SERVICIO ============= */

.svc-hero {
  padding: 130px 0 60px;
  background:
    radial-gradient(ellipse at top right, rgba(201, 166, 108, 0.18), transparent 55%),
    linear-gradient(180deg, #F8F4ED 0%, #F8F4ED 100%);
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(201, 166, 108, 0.1), transparent 40%);
  pointer-events: none;
}
.svc-back {
  display: inline-flex; gap: 6px; align-items: center;
  color: #C9A66C; font-size: 0.9rem; margin-bottom: 16px;
  transition: opacity 0.2s;
}
.svc-back:hover { opacity: 0.7; }
.svc-hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 900px) {
  .svc-hero-grid { grid-template-columns: 1.2fr 1fr; gap: 70px; }
}
.svc-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 16px 0 18px;
}
.svc-hero .subtitle {
  font-size: 1.2rem; color: #C9A66C; font-family: 'Playfair Display', serif;
  font-style: italic; margin-bottom: 24px;
}
.svc-hero .lead {
  color: #7A6B5A; font-size: 1.05rem; line-height: 1.75; margin-bottom: 16px;
}
.svc-hero .quote {
  font-family: 'Playfair Display', serif; color: #fff; font-size: 1.3rem;
  font-style: italic; padding-left: 18px; border-left: 3px solid #C9A66C;
  margin: 28px 0 32px; line-height: 1.4;
}
.svc-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.svc-hero-video {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 9/16; max-width: 380px; margin: 0 auto;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 166, 108, 0.25);
}
.svc-hero-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

.svc-section { padding: 70px 0; }
.svc-section-dark { background: #F8F4ED; }
.svc-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px; color: #fff;
}
.svc-section .lead-p {
  font-size: 1.08rem; color: #7A6B5A; line-height: 1.8;
  margin-bottom: 18px; max-width: 800px;
}
.svc-section p { color: #7A6B5A; line-height: 1.75; margin-bottom: 14px; max-width: 800px; }

/* Tratamientos incluidos */
.treatment-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; margin: 28px 0;
}
.treatment-item {
  background: linear-gradient(180deg, #FFFFFF, #EBE4D6);
  border: 1px solid rgba(201, 166, 108, 0.18);
  border-radius: 14px; padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  transition: all 0.25s;
}
.treatment-item:hover {
  border-color: rgba(201, 166, 108, 0.5);
  transform: translateY(-2px);
}
.treatment-item i { width: 22px; height: 22px; color: #C9A66C; flex-shrink: 0; }
.treatment-item span { color: #fff; font-weight: 500; font-size: 0.95rem; }

/* Beneficios */
.benefits-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin: 24px 0 32px;
}
.benefit-item {
  display: flex; gap: 14px; padding: 18px;
  background: rgba(201, 166, 108, 0.05); border-left: 3px solid #C9A66C;
  border-radius: 10px;
}
.benefit-item i { width: 22px; height: 22px; color: #C9A66C; flex-shrink: 0; margin-top: 2px; }
.benefit-item span { color: #7A6B5A; font-size: 0.96rem; line-height: 1.55; }

/* Filosofía */
.philosophy {
  background: linear-gradient(135deg, rgba(201, 166, 108, 0.08), rgba(201, 166, 108, 0.02));
  border: 1px solid rgba(201, 166, 108, 0.2);
  border-radius: 22px; padding: 40px 36px;
  margin: 28px 0; max-width: 900px;
}
.philosophy h3 {
  color: #C9A66C; font-family: 'Playfair Display', serif;
  font-size: 1.6rem; margin-bottom: 14px;
}
.philosophy .highlight {
  color: #fff; font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.25rem; line-height: 1.4;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(201, 166, 108, 0.25);
}

/* Bloque de urgencia (alerta) */
.urgency-block {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(201, 166, 108, 0.06));
  border: 1px solid rgba(201, 166, 108, 0.3);
  border-left: 5px solid #C9A66C;
  border-radius: 18px; padding: 36px 32px;
  max-width: 900px;
}
@media (min-width: 700px) { .urgency-block { grid-template-columns: auto 1fr; align-items: flex-start; } }
.urgency-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #A07F4B, #C9A66C);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.urgency-icon i { width: 32px; height: 32px; color: #F8F4ED; }
.urgency-block h2 { font-size: 1.7rem; }
.urgency-block p { margin-bottom: 12px; }

/* Soluciones (grid 2x2) */
.solution-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 28px;
}
@media (min-width: 700px) { .solution-grid { grid-template-columns: 1fr 1fr; } }
.solution-card {
  background: linear-gradient(180deg, #FFFFFF, #EBE4D6);
  border: 1px solid rgba(201, 166, 108, 0.18);
  border-radius: 16px; padding: 26px 24px;
  transition: all 0.3s;
}
.solution-card:hover {
  border-color: rgba(201, 166, 108, 0.45);
  transform: translateY(-4px);
}
.solution-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(201, 166, 108, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.solution-icon i { width: 24px; height: 24px; color: #C9A66C; }
.solution-card h4 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.solution-card p { color: #7A6B5A; font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* Bloque de objeción */
.objection-block {
  background: linear-gradient(135deg, rgba(201, 166, 108, 0.06), transparent);
  border: 1px solid rgba(201, 166, 108, 0.2);
  border-radius: 22px; padding: 40px 36px;
  max-width: 900px; margin: 0 auto;
}

/* Pasos del proceso */
.process-steps {
  display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 28px;
}
@media (min-width: 700px) {
  .process-steps { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}
.step-card {
  background: linear-gradient(180deg, #FFFFFF, #EBE4D6);
  border: 1px solid rgba(201, 166, 108, 0.18);
  border-radius: 16px; padding: 26px 24px;
  position: relative; transition: all 0.3s;
}
.step-card:hover {
  border-color: rgba(201, 166, 108, 0.45);
  transform: translateY(-4px);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #A07F4B, #C9A66C);
  color: #F8F4ED; font-weight: 800; font-size: 1.2rem;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}
.step-card h4 { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.step-card p { color: #7A6B5A; font-size: 0.93rem; line-height: 1.6; margin: 0; }

/* CTA banner final */
.cta-banner {
  background: linear-gradient(135deg, #A07F4B 0%, #C9A66C 50%, #C9A66C 100%);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  margin: 60px 0 0;
  color: #F8F4ED;
}
.cta-banner h2 { color: #F8F4ED; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-banner p {
  color: rgba(10, 10, 10, 0.85); font-size: 1.05rem;
  max-width: 620px; margin: 0 auto 26px;
}
.cta-banner .btn {
  background: #F8F4ED; color: #C9A66C;
  padding: 16px 34px; font-size: 1.05rem;
}
.cta-banner .btn:hover { background: #1a1a1a; }
.cta-banner-sub {
  margin-top: 16px; font-size: 0.9rem; color: rgba(10, 10, 10, 0.7);
}

/* Stats / proof points */
.proof-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; margin: 36px 0;
}
.proof-item {
  text-align: center; padding: 24px 16px;
  background: rgba(201, 166, 108, 0.05); border-radius: 16px;
  border: 1px solid rgba(201, 166, 108, 0.15);
}
.proof-num {
  font-family: 'Playfair Display', serif; font-size: 2.4rem;
  color: #C9A66C; font-weight: 700; line-height: 1;
}
.proof-label { color: #7A6B5A; font-size: 0.9rem; margin-top: 8px; display: block; }

.text-center { text-align: center; }

/* ============= CASOS REALES (sección antes/después) ============= */
.diseno-cases-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.diseno-case-card {
  background: linear-gradient(180deg, #FFFFFF, #EBE4D6);
  border: 1px solid rgba(201, 166, 108, 0.25);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.diseno-case-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: #C9A66C;
}
.diseno-case-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1a1a;
}
.diseno-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.diseno-case-img.img-missing {
  background: linear-gradient(135deg, #2a1f15, #F8F4ED);
}
.diseno-case-img.img-missing::after {
  content: 'Foto pendiente';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #7A6B5A; font-size: 0.85rem;
}
.diseno-case-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 10, 10, 0.85);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.diseno-case-badge-gold {
  background: #C9A66C;
  color: #F8F4ED;
}
.diseno-case-body {
  padding: 24px;
  text-align: center;
}
.diseno-case-body h4 {
  color: #C9A66C;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.diseno-case-body p {
  color: #2C211A;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
  margin: 0 auto;
}

/* Grid responsive para múltiples casos */
@media (min-width: 900px) {
  .diseno-cases-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
  }
}
@media (min-width: 1200px) {
  .diseno-cases-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }
}

/* ============= LUXURY LIGHT THEME OVERRIDES — SERVICIOS ============= */

.svc-hero {
  background: radial-gradient(ellipse at top right, rgba(201, 166, 108, 0.15), transparent 55%),
              linear-gradient(180deg, #F8F4ED 0%, #EBE4D6 100%) !important;
}
.svc-hero h1 { color: #2C211A !important; font-family: 'Cormorant Garamond', Georgia, serif !important; }
.svc-hero .subtitle { color: #A07F4B !important; }
.svc-hero .lead { color: #2C211A !important; }
.svc-hero .quote {
  color: #2C211A !important;
  border-left-color: #C9A66C !important;
}
.svc-hero-video {
  box-shadow: 0 30px 80px rgba(44, 33, 26, 0.15), 0 0 0 1px #E2D9C5 !important;
}
.svc-back { color: #A07F4B !important; }

.svc-section { background: #F8F4ED !important; }
.svc-section-dark { background: #EBE4D6 !important; }
.svc-section h2 { color: #2C211A !important; font-family: 'Playfair Display', Georgia, serif !important; }
.svc-section .lead-p { color: #2C211A !important; }
.svc-section p { color: #7A6B5A !important; }

.treatment-item {
  background: #FFFFFF !important;
  border: 1px solid #E2D9C5 !important;
  box-shadow: 0 1px 4px rgba(44, 33, 26, 0.04);
}
.treatment-item:hover { border-color: #C9A66C !important; }
.treatment-item i { color: #C9A66C !important; }
.treatment-item span { color: #2C211A !important; }

.benefit-item {
  background: #FFFFFF !important;
  border-left: 3px solid #C9A66C !important;
  box-shadow: 0 1px 4px rgba(44, 33, 26, 0.04);
}
.benefit-item i { color: #A07F4B !important; }
.benefit-item span { color: #2C211A !important; }

.philosophy {
  background: #FFFFFF !important;
  border: 1px solid #E2D9C5 !important;
  box-shadow: 0 4px 24px rgba(44, 33, 26, 0.06);
}
.philosophy h3 { color: #A07F4B !important; }
.philosophy p { color: #2C211A !important; }
.philosophy .highlight {
  color: #2C211A !important;
  border-top-color: #E2D9C5 !important;
  font-style: italic;
}

.urgency-block {
  background: #FFFFFF !important;
  border: 1px solid #C9A66C !important;
  border-left: 5px solid #C9A66C !important;
  box-shadow: 0 4px 24px rgba(44, 33, 26, 0.06);
}
.urgency-icon { background: linear-gradient(135deg, #A07F4B, #C9A66C) !important; }
.urgency-icon i { color: #FFFFFF !important; }
.urgency-block h2 { color: #2C211A !important; }
.urgency-block p { color: #7A6B5A !important; }

.solution-card {
  background: #FFFFFF !important;
  border: 1px solid #E2D9C5 !important;
  box-shadow: 0 2px 12px rgba(44, 33, 26, 0.04);
}
.solution-card:hover { border-color: #C9A66C !important; }
.solution-icon { background: rgba(201, 166, 108, 0.15) !important; }
.solution-icon i { color: #A07F4B !important; }
.solution-card h4 { color: #2C211A !important; }
.solution-card p { color: #7A6B5A !important; }

.objection-block {
  background: #FFFFFF !important;
  border: 1px solid #E2D9C5 !important;
  box-shadow: 0 4px 24px rgba(44, 33, 26, 0.06);
}

.step-card {
  background: #FFFFFF !important;
  border: 1px solid #E2D9C5 !important;
  box-shadow: 0 2px 12px rgba(44, 33, 26, 0.04);
}
.step-card:hover { border-color: #C9A66C !important; }
.step-card h4 { color: #2C211A !important; }
.step-card p { color: #7A6B5A !important; }
.step-num {
  background: linear-gradient(135deg, #A07F4B, #C9A66C) !important;
  color: #FFFFFF !important;
}

.cta-banner {
  background: linear-gradient(135deg, #A07F4B 0%, #C9A66C 50%, #D4B884 100%) !important;
  color: #FFFFFF !important;
}
.cta-banner h2 { color: #FFFFFF !important; }
.cta-banner p { color: rgba(255, 255, 255, 0.92) !important; }
.cta-banner .btn { background: #2C211A !important; color: #C9A66C !important; }
.cta-banner .btn:hover { background: #1F1812 !important; }
.cta-banner-sub { color: rgba(255, 255, 255, 0.85) !important; }

.proof-item {
  background: #FFFFFF !important;
  border: 1px solid #E2D9C5 !important;
  box-shadow: 0 1px 4px rgba(44, 33, 26, 0.04);
}
.proof-num { color: #A07F4B !important; }
.proof-label { color: #7A6B5A !important; }

/* Casos antes/después en página de servicio */
.diseno-case-card {
  background: #FFFFFF !important;
  border: 1px solid #E2D9C5 !important;
  box-shadow: 0 10px 40px rgba(44, 33, 26, 0.08) !important;
}
.diseno-case-images { background: #C9A66C !important; }
.diseno-case-badge { background: rgba(44, 33, 26, 0.85) !important; color: #FFFFFF !important; }
.diseno-case-badge-gold { background: #C9A66C !important; color: #2C211A !important; }
.diseno-case-body h4 { color: #A07F4B !important; }
.diseno-case-body p { color: #7A6B5A !important; }
