
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy: #1e2538;
  --contacto: #ffffff;
  --nava: #ffffff;
  --navy-light: #86b4ff;
  --gold: #d4af37;
  --gold-light: #e0c35c;
  --gold-dark: #b8952e;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 20px -4px rgba(212,175,55,0.3);
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--nava);
  background: var(--nava);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
  margin: 20px auto;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block; padding: 0.625rem 1.5rem;
  background: var(--gold); color: var(--navy);
  font-weight: 600; font-size: 0.875rem;
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-light); transform: scale(1.05); }
.btn-gold:active { transform: scale(0.98); }
.btn-gold-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; width: 100%;
  z-index: 100; background: transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(93, 142, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.navbar-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 80px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700; color: var(--white);
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8); transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* Dropdown (desktop) */
.dropdown { position: relative; display: inline-block; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 220px;
  box-shadow: var(--shadow-lg); z-index: 1000;
  border-radius: 4px; padding: 10px 0;
  border-top: 3px solid var(--gold);
}
.dropdown-menu a {
  color: var(--navy) !important; padding: 12px 20px;
  display: block; font-size: 0.9rem; transition: background 0.3s;
}
.dropdown-menu a:hover {
  background-color: #f9f6ef; color: var(--gold) !important;
}
.dropdown:hover .dropdown-menu { display: block; }

/* Mobile toggle */
.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--white); cursor: pointer; font-size: 1.8rem;
  transition: transform 0.3s ease;
}
.mobile-toggle.active { transform: rotate(90deg); }

/* Mobile menu */
.mobile-menu {
  position: absolute; top: 80px; left: 0; width: 100%;
  background: rgba(15,23,42,0.98); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.5rem;
  opacity: 0; transform: translateY(-10px);
  pointer-events: none; transition: all 0.3s ease;
}
.mobile-menu.open {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.mobile-menu a {
  color: rgba(255,255,255,0.8); font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-gold {
  width: 100%; text-align: center; margin-top: 0.5rem;
}
.mobile-dropdown {
  display: flex; flex-direction: column; gap: 0.3rem; margin-top: 0.5rem;
}
.mobile-dropdown-label {
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px;
}
.mobile-dropdown a {
  font-size: 0.95rem; color: rgba(255,255,255,0.8);
  padding-left: 10px; border: none;
}
.mobile-contact {
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-contact h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.mobile-contact p {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

/* ===== HERO (homepage) ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(85, 89, 100, 0.7)),
    url('img/hero-cleaning.jpg');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, var(--navy) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 750px; padding: 2rem 1rem;
}
.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 420px);
  gap: 2rem;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.hero-copy {
  max-width: 760px;
  text-align: left;
  padding: 2rem 0;
}
.hero-badge {
  display: inline-block; padding: 0.375rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(212,175,55,0.3); border-radius: 100px;
}
.hero h1,
.service-page-hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 1.5rem;
}
.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p,
.service-page-hero-content p {
  font-size: 1.125rem; color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem; max-width: 600px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.2rem;
}
.hero-link:hover {
  color: var(--gold);
  border-color: rgba(212,175,55,0.8);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 780px;
}
.hero-stat {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.hero-stat strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.hero-stat span {
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  line-height: 1.6;
}
.hero-panel {
  position: relative;
  z-index: 2;
  padding: 2rem;
  border-radius: 1.25rem;
  background: rgba(14, 20, 34, 0.78);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
  color: var(--white);
}
.hero-panel-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-panel h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero-checklist {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.hero-checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255,255,255,0.75);
}
.hero-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212,175,55,0.12);
}
.hero-panel-link {
  color: var(--gold);
  font-weight: 700;
}
.hero-panel-link:hover {
  color: var(--gold-light);
}
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to top, var(--white), transparent); z-index: 3;
}

.proof-strip {
  position: relative;
  z-index: 4;
  margin-top: -3.5rem;
  padding: 0 0 2rem;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.proof-item {
  padding: 1.35rem 1.5rem;
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
  border: 1px solid rgba(15,23,42,0.05);
}
.proof-item strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.proof-item span {
  color: var(--gray-500);
  font-size: 0.92rem;
}

/* ===== SERVICE PAGE HERO ===== */
.service-page-hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.service-page-hero-bg {
  position: absolute; inset: 0;
}
.service-page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85), rgba(15,23,42,0.6));
}
.service-page-hero-content {
  position: relative; z-index: 2;
  padding: 8rem 0 4rem;
}
.service-page-hero-content p {
  margin-left: 0; margin-right: 0;
}

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

.fade-img {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s ease;
}
.fade-img.visible { opacity: 1; transform: translateY(0); }

/*=====seccion nueva negro*/

.section1{
  font-size: times(1.75rem, 3vw, 2.5rem); font-weight: 15;
  color: var(--navy); text-align: left; 
  }
/* ===== SECTION HEADERS ===== */
.section-label {
  display: block; color: var(--gold);
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; text-align: center;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--nava); text-align: center; margin: 0.75rem 0 1.5rem;
}
.section-title2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--navy); text-align: center; margin: 0.75rem 0 1.5rem;
}




.section-subtitle {
  font-size: times(1.75rem, 3vw, 2.5rem); font-weight: 15;
  color: var(--nava); text-align: center; 


  }

/* ===== SERVICE PAGE SECTIONS ===== */
.sp-section { padding: 5rem 0; color: var(--navy);}
.sp-section-gray { background: var(--gray-100); }

.sp-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700;
  color: var(--navy); margin: 0.75rem 0 1.5rem; line-height: 1.3;
}

.sp-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.sp-intro-reverse { direction: rtl; }
.sp-intro-reverse > * { direction: ltr; }
.sp-intro-text p {
  font-size: 1.05rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 1rem;
}
.sp-intro-text .section-label { text-align: left; }
.sp-intro-image img {
  border-radius: 1rem; box-shadow: var(--shadow-lg);
  width: 100%; height: auto;
}

/* Detail cards (kitchen, bathroom) */
.sp-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 3rem;
}
.sp-detail-card {
  background: var(--white); border-radius: 1rem;
  overflow: hidden; box-shadow: var(--shadow-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.sp-detail-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.sp-detail-card-img {
  height: 220px; overflow: hidden;
}
.sp-detail-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.sp-detail-card:hover .sp-detail-card-img img { transform: scale(1.05); }
.sp-detail-card-body {
  padding: 1.5rem;
}
.sp-detail-card-body h3 {
  font-size: 1.25rem; margin-bottom: 1rem; color: var(--navy);
}
.check-list li {
  position: relative; padding-left: 28px; margin-bottom: 10px;
  color: var(--gray-500); font-size: 0.95rem;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: bold; font-size: 1.1rem;
}

/* Included services strip */
.sp-included {
  background: var(--white); border-radius: 1rem; padding: 2rem;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold);
}
.sp-included h3 {
  font-size: 1.125rem; color: var(--navy); margin-bottom: 1.25rem;
}
.sp-included-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.sp-included-item {
  font-size: 0.95rem; color: var(--gray-500);
}
.sp-included-item span {
  color: var(--gold); font-weight: 700; margin-right: 0.5rem;
}

/* Banner image */
.sp-banner {
  overflow: hidden; max-height: 500px;
  display: flex; align-items: center; justify-content: center;
}
.sp-banner img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ===== ABOUT ===== */
.about { padding: 5rem 0; }
.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.about-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-copy {
  color: var(--navy);
}
.about-text {
  max-width: 700px; margin: 0 auto 3rem; text-align: center;
  font-size: 1.125rem; color: var(--gray-500); line-height: 1.8;
}
.about-text-left {
  max-width: none;
  margin: 0 0 1.2rem;
  text-align: left;
}
.section-label-left,
.section-title-left {
  text-align: left;
}
.highlights {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 650px; margin: 0 auto;
}
.highlight-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  padding: 1.5rem; border-radius: var(--radius); background: var(--gray-100);
}
.highlight-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center;
}
.highlight-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
.highlight-card span { font-size: 0.875rem; font-weight: 600; color: var(--navy); }

/* ===== SERVICES ===== */
.services { padding: 5rem 0; background: var(--gray-100); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon {
  width: 48px; height: 48px; border-radius: 0.5rem;
  background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(212,175,55,0.2); }
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; }
.service-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 600; color: var(--gold); transition: color 0.2s;
}
.service-link:hover { color: var(--gold-dark); }
.service-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* ===== WHY CHOOSE US ===== */
.why-us { padding: 5rem 0; background: var(--navy); }
.why-us .section-title { color: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.why-item { text-align: center; }
.why-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; }
.why-item h3 { font-size: 1.125rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.why-item p { font-size: 0.875rem; color: rgba(255,255,255,0.6); }


/* ===== TESTIMONIALS PRO ===== */
.testimonials {
  padding: 6rem 0;
  position: relative;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* CARD */
.testimonial-card {
  position: relative;
  padding: 2.2rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* HOVER MÁS FINO */
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* TEXTO */
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

/* COMILLAS MÁS ELEGANTES */
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 6rem;
  color: rgba(0,0,0,0.04);
  font-family: "Playfair Display", serif;
  z-index: 0;
}

.testimonial-card::after {
  content: "”";
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-size: 6rem;
  color: rgba(0,0,0,0.04);
  font-family: "Playfair Display", serif;
  z-index: 0;
}

/* ESTRELLAS */
.stars {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

/* CLIENTE */
.client {
  font-size: 0.85rem;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.client strong {
  font-size: 0.95rem;
  color: var(--navy);
}

/* BORDE SUTIL ANIMADO */
.testimonial-card::after {
  pointer-events: none;
}

.testimonial-card::before,
.testimonial-card::after {
  transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
  transform: translateY(-5px);
}

.testimonial-card:hover::after {
  transform: translateY(5px);
}

/* EFECTO DE LUZ SUAVE */
.testimonial-card::selection {
  background: rgba(255, 215, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.8rem;
  }
}

/* ===== SERVICE AREAS ===== */
/* ===== SERVICE AREAS ===== */
.service-areas {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--navy);
}

.areas-content {
  position: relative;
  z-index: 3;
}

/* CONTENEDOR DEL VIDEO */
.areas-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* VIDEO */
.areas-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: brightness(0.5) contrast(1.1) saturate(1.1);
}

/* OVERLAY OSCURO + COLOR */
.areas-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.103),
    rgba(66, 54, 110, 0.85)
  );
  z-index: 2;
}

/* PUNTOS ANIMADOS (encima del video) */
.areas-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.08;
  animation: moveDots 40s linear infinite;
  z-index: 2;
}

@keyframes moveDots {
  0% { transform: translateY(0); }
  100% { transform: translateY(-60px); }
}
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px; margin-top: 40px; max-width: 1000px; margin-left: auto; margin-right: auto;
}
.area-item {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(6px);
  border-radius: 12px; padding: 12px 16px; text-align: center;
  color: white; font-weight: 500; transition: all 0.3s ease; cursor: default;
}
.area-item:hover { background: rgba(14,165,233,0.2); transform: translateY(-3px); }

/* ===== CTA ===== */
.cta-section { padding: 5rem 0; }
.cta-box {
  max-width: 650px; margin: 0 auto; text-align: center;
  background: var(--navy); border-radius: 1rem; padding: 3rem 2rem;
}
.cta-box h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--white); margin-bottom: 1rem;
}
.cta-box p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-secondary-link {
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}
.cta-secondary-link:hover {
  color: var(--gold);
}

/* ===== CONTACT ===== */
.contact-page { padding: 120px 0 80px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.contact-info h1 { font-size: 3rem; margin: 15px 0; line-height: 1.2; }
.info-items { margin: 30px 0; }
.info-item { margin-bottom: 20px; }
.info-item strong {
  display: block; color: var(--gold); text-transform: uppercase;
  font-size: 0.8rem; letter-spacing: 1px;
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background-color: #25D366; color: white;
  padding: 15px 30px; border-radius: var(--radius);
  font-weight: 700; transition: 0.3s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background-color: #128C7E; transform: translateY(-3px); }
.contact-form-container {
  background: var(--contacto); padding: 40px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 2px solid #00000038;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: rgb(0, 0, 0); margin-bottom: 8px; font-size: 0.9rem; }
.form-group input,
.form-group textarea, 
.form-group select {
  width: 100%; padding: 12px; border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255,255,255,0.05); color: rgb(99, 99, 99);
  font-family: var(--font-body);
}
.btn-full { width: 100%; cursor: pointer; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy); color: #e2e8f0;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: var(--font-heading); font-size: 1.25rem;
  font-weight: 700; color: var(--white); margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-description { font-size: 0.9rem; color: var(--gray-400); }
.footer-col h4 { margin-bottom: 10px; color: var(--white); font-size: 1rem; }
.footer-col p { font-size: 0.9rem; margin-bottom: 5px; color: #cbd5e1; }
.social-links a {
  display: block; margin-bottom: 5px; color: var(--gold); transition: 0.3s;
}
.social-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--navy-light); padding-top: 1.25rem;
  text-align: center; font-size: 0.85rem; color: var(--gray-500);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-cards-grid { grid-template-columns: 1fr; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
  .hero-panel { max-width: 620px; }
  .proof-grid { grid-template-columns: 1fr; }
  .about-showcase { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .dropdown { display: none; }
  .mobile-toggle { display: block; }
  .navbar-inner { height: 70px; }
  .mobile-menu { top: 70px; }
  .highlights { grid-template-columns: 1fr; max-width: 300px; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .sp-intro-grid { grid-template-columns: 1fr; }
  .sp-intro-reverse { direction: ltr; }
  .sp-cards-grid { grid-template-columns: 1fr; }
  .sp-included-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .contact-info h1 { font-size: 2.2rem; }
  .service-page-hero { min-height: 50vh; }
  .service-page-hero-content { padding: 6rem 0 3rem; }
  .hero-layout { min-height: auto; padding-top: 6.5rem; padding-bottom: 4rem; }
  .hero-copy { text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-panel { padding: 1.5rem; }
  .proof-strip { margin-top: -2rem; }
  .section-label-left, .section-title-left, .about-text-left { text-align: center; }
  .about-visual img { min-height: 280px; }
}

/* Flecha */
.dropdown-toggle .arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Animación al hacer hover */
.dropdown:hover .arrow {
  transform: rotate(180deg);
}


/* ===== BEFORE / AFTER PRO ===== */

.before-after {
  padding: 80px 20px;
  position: relative;
}

.ba-container {
  max-width: 900px;
  margin: 0 auto;
}

.ba-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* CONTENEDOR */
.ba-slider {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  cursor: ew-resize;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ba-slider:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* IMÁGENES */
.ba-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}

.ba-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: width 0.2s ease;
}

/* LÍNEA DIVISORA */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #fff, transparent);
  transform: translateX(-50%);
  z-index: 2;
  transition: left 0.2s ease;
}

/* BOTÓN CENTRAL */
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* FLECHAS */
.ba-handle::before {
  content: "⟷";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: bold;
  color: #111;
  z-index: 3;
}

/* INPUT INVISIBLE */
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
  z-index: 3;
}

.ba-range::-webkit-slider-thumb {
  appearance: none;
  width: 0;
  height: 0;
}

.ba-range::-moz-range-thumb {
  width: 0;
  height: 0;
  border: none;
}

/* LABELS */
.ba-slider::before,
.ba-slider::after {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  z-index: 4;
}

.ba-slider::before {
  content: "ANTES";
  left: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
}

.ba-slider::after {
  content: "DESPUÉS";
  right: 20px;
  background: rgba(255,255,255,0.9);
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ba-img {
    height: 350px;
  }

  .ba-title {
    margin-bottom: 25px;
  }
}

/* ===== SEO SECTION ===== */
.seo-section {
  padding: 5rem 0;
  position: relative;
}

.seo-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.seo-subtitle {
  margin-top: 1rem;
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.6;
}

/* GRID */
.sp-seo-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* COLUMN */
.sp-seo-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* CARD */
.seo-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.seo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* TEXT */
.seo-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.seo-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sp-seo-content {
    grid-template-columns: 1fr;
  }
}
