/* ==========================================================================
   Lavandería Laureles Solymar - CSS Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {

  --color-primary: #0b4c8c;        /* Azul fuerte Laureles */
  --color-primary-dark: #073562;   /* Azul oscuro para hover/enfoque */
  --color-secondary: #e0f2fe;      /* Celeste claro */
  --color-secondary-hover: #bae6fd;/* Celeste hover */
  --color-accent: #b45309;         /* Dorado/beige para destaques */
  --color-accent-light: #fef3c7;   /* Fondo beige claro */
  --color-white: #ffffff;
  --color-bg-light: #f8fafc;       /* Gris muy suave */
  --color-bg-card: #ffffff;
  --color-text-dark: #0f172a;      /* Slate 900 */
  --color-text-body: #334155;      /* Slate 700 */
  --color-text-muted: #64748b;     /* Slate 500 */
  --color-whatsapp: #25d366;       /* Verde WhatsApp */
  --color-whatsapp-hover: #20ba5a;
  --color-border: #e2e8f0;
  
  --font-main: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(11, 76, 140, 0.08), 0 8px 10px -6px rgba(11, 76, 140, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(11, 76, 140, 0.12), 0 10px 10px -5px rgba(11, 76, 140, 0.08);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}

/* --- Base Reset --- */
*, *::before, *::after {

  box-sizing: border-box;
  margin: 0;
  padding: 0;

}

html {

  scroll-behavior: smooth;

}

body {

  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;

}

img, video {

  max-width: 100%;
  height: auto;
  display: block;

}

a {

  color: inherit;
  text-decoration: none;

}

h1, h2, h3, h4 {

  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.25;

}

/* --- Utility Classes --- */
.container {

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

}

.section {

  padding: 50px 0;
  position: relative;
  scroll-margin-top: 90px; /* Evita que el header sticky cubra el título de la sección al navegar */

}

.section-alt {

  background-color: var(--color-white);

}

.text-center {
 text-align: center; 
}

.mb-2 {
 margin-bottom: 8px; 
}

.mb-4 {
 margin-bottom: 16px; 
}

.mb-8 {
 margin-bottom: 32px; 
}

.badge {

  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;

}

.badge-primary {

  background-color: var(--color-secondary);
  color: var(--color-primary);

}

.badge-accent {

  background-color: var(--color-accent-light);
  color: var(--color-accent);

}

/* --- Scroll Animation System (1.5 seconds) --- */
.reveal-left {

  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1); /* Acelerado de 1.5s a 0.65s para encuadrar al instante */
  will-change: transform, opacity;

}

.reveal-right {

  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1); /* Acelerado de 1.5s a 0.65s para encuadrar al instante */
  will-change: transform, opacity;

}

/* On mobile, standard fade-up or simple side entrance is gentler to avoid horizontal layout breakages */
@media (max-width: 768px) {

  .reveal-left {
    transform: translateX(-20px);
  }
  .reveal-right {
    transform: translateX(20px);
  }

}

.reveal-active {

  opacity: 1;
  transform: translateX(0);

}

/* Delay modifiers for sequential entry */
.delay-1 {
 transition-delay: 0.15s; 
}

.delay-2 {
 transition-delay: 0.3s; 
}

.delay-3 {
 transition-delay: 0.45s; 
}

.delay-4 {
 transition-delay: 0.6s; 
}

/* --- Button Styles (Minimalist & Premium Hover) --- */
.btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;

}

.btn-primary {

  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(11, 76, 140, 0.2);

}

.btn-primary:hover {

  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 76, 140, 0.3);

}

.btn-secondary {

  background-color: var(--color-secondary);
  color: var(--color-primary);

}

.btn-secondary:hover {

  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);

}

.btn-whatsapp {

  background-color: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);

}

.btn-whatsapp:hover {

  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);

}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {

  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: transform var(--transition-normal), background-color var(--transition-normal);

}

.whatsapp-float:hover {

  transform: scale(1.1) rotate(5deg);
  background-color: var(--color-whatsapp-hover);

}

.whatsapp-float svg {

  width: 32px;
  height: 32px;

}

.whatsapp-ping {

  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--color-whatsapp);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;

}

@keyframes ping {

  75%, 100% {
    transform: scale(1.4);
    opacity: 0;
  }

}

/* --- Header & Navigation --- */
.header {

  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 900;
  transition: background-color var(--transition-fast);

}

.nav-container {

  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;

}

@media (min-width: 769px) {
.nav-container nav {

    margin-left: auto;
    margin-right: 32px;
  
}
}

.logo-link {

  display: flex;
  align-items: center;
  gap: 14px;

}

.logo-img {

  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: contain;
  background-color: var(--color-white);
  border: 1px solid rgba(11, 76, 140, 0.18);
  box-shadow: 0 8px 22px rgba(11, 76, 140, 0.14);

}

.logo-text {

  font-size: 1.42rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;

}

.logo-subtext {

  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;

}

.nav-menu {

  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;

}

.nav-link {

  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-body);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);

}

.nav-link:hover {

  color: var(--color-primary);

}

.nav-link::after {

  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);

}

.nav-link:hover::after {

  width: 100%;

}

.nav-actions {

  display: flex;
  align-items: center;
  gap: 12px;

}

.menu-toggle {

  display: none;
  background: none;
  border: none;
  color: var(--color-text-dark);
  cursor: pointer;
  padding: 8px;

}

/* --- Hero Section --- */
.hero {

  min-height: calc(100vh - 84px);
  padding: 36px 0 20px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.86) 36%, rgba(235,246,255,0.36) 58%, rgba(231,244,255,0.28) 100%),
    url('assets/hero-bg-premium.png') center / cover no-repeat;
  overflow: visible;
  scroll-margin-top: 90px;
  position: relative;

}

.hero::before {

  content: '';
  position: absolute;
  inset: 0 0 auto auto;
  width: 54vw;
  height: 100%;
  background: radial-gradient(circle at 88% 50%, rgba(12, 77, 140, 0.1), transparent 44%);
  pointer-events: none;

}

.hero::after {

  content: '';
  position: absolute;
  right: -7vw;
  bottom: -19vw;
  width: 65vw;
  height: 38vw;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  pointer-events: none;

}

.hero-grid {

  display: grid;
  grid-template-columns: minmax(650px, 0.94fr) minmax(520px, 1.06fr);
  grid-template-rows: 1fr auto;
  gap: 18px 18px;
  align-items: center;
  min-height: auto;
  position: relative;
  z-index: 1;

}

.hero > .container {

  max-width: 1500px;
  padding-left: clamp(56px, 5.8vw, 92px);
  padding-right: clamp(24px, 3.5vw, 56px);

}

.hero-text {

  padding-top: 4px;
  position: relative;
  z-index: 4;

}

.hero .badge-primary {

  padding: 10px 18px;
  background: rgba(224, 242, 254, 0.82);
  color: #0b5eb0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  box-shadow: 0 12px 28px rgba(11, 76, 140, 0.08);

}

.hero-title {

  font-size: clamp(3.25rem, 4.8vw, 4.28rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 20px 0 12px;
  max-width: 790px;
  text-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);

}

.hero-title span {

  color: #1265d8;

}

.hero-title-wave {

  width: 76px;
  height: 14px;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 7px 8px, transparent 0 5px, #1265d8 5px 7px, transparent 8px),
    radial-gradient(circle at 24px 8px, transparent 0 5px, #1265d8 5px 7px, transparent 8px),
    radial-gradient(circle at 41px 8px, transparent 0 5px, #1265d8 5px 7px, transparent 8px),
    radial-gradient(circle at 58px 8px, transparent 0 5px, #1265d8 5px 7px, transparent 8px);
  background-size: 17px 14px;

}

.hero-subtitle {

  font-size: 1.22rem;
  line-height: 1.56;
  color: var(--color-text-body);
  margin-bottom: 20px;
  max-width: 620px;

}

.hero-cta {

  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;

}

.hero-cta .btn {

  min-height: 64px;
  padding: 18px 30px;
  font-size: 1.03rem;
  box-shadow: 0 16px 26px rgba(11, 76, 140, 0.1);

}

.hero-cta .btn-whatsapp {

  min-width: 314px;
  background: linear-gradient(135deg, #05b93f, #20d768);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.28);

}

.hero-cta .btn-secondary {

  min-width: 288px;
  color: #1265d8;
  background: rgba(255,255,255,0.82);
  border: 1.5px solid rgba(18, 101, 216, 0.45);

}

.hero-features {

  grid-column: 1 / 3;
  align-self: end;
  display: flex;
  gap: 0;
  width: min(840px, 72vw);
  padding: 14px 20px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(203, 222, 242, 0.74);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(11, 76, 140, 0.11);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 5;

}

.hero-feature-item {

  display: flex;
  align-items: center;
  gap: 13px;
  flex: 1;
  padding: 0 16px;
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-dark);
  border-right: 1px solid rgba(148, 163, 184, 0.28);

}

.hero-feature-item:first-child {

  padding-left: 0;

}

.hero-feature-item:last-child {

  border-right: 0;
  padding-right: 0;

}

.hero-feature-item span {

  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1265d8;
  background: rgba(224, 242, 254, 0.95);

}

.hero-feature-item p {

  margin: 0;
  line-height: 1.45;

}

.hero-feature-item svg {

  width: 21px;
  height: 21px;

}

.hero-image-wrapper {

  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
  margin-top: 0;
  margin-right: -60px;
  z-index: 2;

}

.hero-image-wrapper::before {

  content: '';
  position: absolute;
  inset: -42px -70px -28px -84px;
  display: block;
  background: rgba(255,255,255,0.92);
  border-radius: 48% 0 0 48% / 58% 0 0 58%;
  box-shadow: -18px 0 0 rgba(255,255,255,0.55);
  z-index: 0;

}

.hero-main-img {

  width: min(820px, 61vw);
  max-width: none;
  height: 610px;
  object-fit: cover;
  object-position: center;
  border-radius: 46% 0 0 46% / 58% 0 0 58%;
  box-shadow: -18px 28px 52px rgba(11, 76, 140, 0.14);
  border: 0;
  transition: transform var(--transition-normal);
  position: relative;
  z-index: 1;

}

.hero-main-img:hover {

  transform: scale(1.01);

}

.hero-logo-showcase {

  isolation: isolate;

}

.hero-logo-showcase::before {

  inset: 18px 10px 8px -72px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.96) 0 46%, rgba(232, 245, 255, 0.82) 47% 62%, rgba(255,255,255,0.42) 63% 100%);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(18, 101, 216, 0.12),
    inset 0 0 0 24px rgba(255,255,255,0.48),
    0 32px 80px rgba(11, 76, 140, 0.15);

}

.hero-logo-showcase::after {

  content: '';
  position: absolute;
  width: min(600px, 45vw);
  height: min(600px, 45vw);
  border-radius: 50%;
  border: 2px dashed rgba(18, 101, 216, 0.18);
  z-index: 0;
  animation: spin-slow 28s linear infinite;

}

.hero-logo-container {

  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1;

}

.hero-main-logo {

  width: min(430px, 34vw);
  height: min(430px, 34vw);
  object-fit: contain;
  padding: clamp(28px, 3vw, 44px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.98), rgba(240, 248, 255, 0.92) 66%, rgba(219, 237, 255, 0.72));
  box-shadow:
    0 24px 58px rgba(11, 76, 140, 0.16),
    inset 0 0 0 12px rgba(255,255,255,0.72),
    inset 0 0 0 16px rgba(18, 101, 216, 0.08);

}

.hero-main-logo:hover {

  transform: scale(1.025) rotate(-1deg);

}

.hero-logo-orbit {

  position: absolute;
  width: min(560px, 42vw);
  height: min(560px, 42vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 16% 24%, rgba(18, 101, 216, 0.12) 0 16px, transparent 17px),
    radial-gradient(circle at 82% 20%, rgba(18, 101, 216, 0.16) 0 22px, transparent 23px),
    radial-gradient(circle at 86% 72%, rgba(37, 211, 102, 0.16) 0 18px, transparent 19px),
    radial-gradient(circle at 25% 80%, rgba(180, 83, 9, 0.14) 0 14px, transparent 15px);
  z-index: 0;
  pointer-events: none;

}

.hero-logo-caption {

  position: absolute;
  bottom: 74px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(18, 101, 216, 0.14);
  box-shadow: 0 14px 30px rgba(11, 76, 140, 0.12);

}

.hero-logo-caption strong {

  color: var(--color-primary);
  font-size: 1.35rem;
  line-height: 1;

}

.hero-logo-caption span {

  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 600;

}

@keyframes spin-slow {

  to { transform: rotate(360deg); }

}

/* Floating badge in Hero */
.hero-badge-float {

  position: absolute;
  background-color: var(--color-white);
  padding: 20px 26px;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(11, 76, 140, 0.16);
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(226, 232, 240, 0.75);
  z-index: 2;

}

.hero-badge-float.badge-left {

  top: 10px;
  left: -110px;
  min-width: 260px;
  padding: 12px 18px;
  border-radius: 20px;
  gap: 12px;
  color: var(--color-white);
  background: linear-gradient(135deg, #1265d8, #0758bd);
  animation: float-y 4s ease-in-out infinite alternate;

}

.hero-badge-float.badge-right {

  top: 100px;
  left: -110px;
  right: auto;
  min-width: 260px;
  padding: 12px 18px;
  border-radius: 20px;
  gap: 12px;
  animation: float-y 4s ease-in-out infinite alternate-reverse;

}

.badge-icon-circle {

  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;

}

.hero-badge-text h4 {

  font-size: 1.05rem;
  margin: 0;

}

.hero-badge-text p {

  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.45;

}

.hero-badge-float.badge-left .badge-icon-circle {

  width: 46px;
  height: 46px;
  background: var(--color-white);
  color: #1265d8;

}

.hero-badge-float.badge-left .hero-badge-text p,
.hero-badge-float.badge-left .hero-badge-text h4 {

  color: var(--color-white);

}

.hero-badge-float.badge-left .hero-badge-text h4 {

  font-size: 0.96rem;

}

.hero-badge-float.badge-left .hero-badge-text p {

  font-size: 0.82rem;

}

.hero-badge-float.badge-right .badge-icon-circle {

  width: 46px;
  height: 46px;
  color: #16a34a !important;
  background: #dcfce7 !important;

}

.hero-badge-float.badge-right .hero-badge-text h4 {

  font-size: 0.96rem;

}

.hero-badge-float.badge-right .hero-badge-text p {

  font-size: 0.82rem;

}

.hero-paper-plane {

  position: absolute;
  left: 40%;
  top: 31%;
  width: 140px;
  height: 120px;
  z-index: 2;
  pointer-events: none;

}

.hero-paper-plane svg {

  width: 100%;
  height: 100%;

}

@keyframes float-y {

  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }

}

/* --- Section Headers --- */
.section-header {

  max-width: 600px;
  margin: 0 auto 28px auto; /* Reducido de 56px para optimizar espacio vertical */

}

.section-title {

  font-size: 2.1rem; /* Más compacto */
  letter-spacing: -0.02em;
  margin-top: 8px;
  margin-bottom: 10px; /* Reducido de 16px */

}

.section-desc {

  font-size: 1.05rem;
  color: var(--color-text-muted);

}

/* --- Benefits Section --- */
#beneficios {

  min-height: calc(100vh - 84px);
  padding: 16px 0 30px;
  background:
    radial-gradient(circle at 11% 14%, rgba(11, 96, 182, 0.16) 0 12px, transparent 13px),
    radial-gradient(circle at 22% 5%, rgba(11, 96, 182, 0.12) 0 9px, transparent 10px),
    radial-gradient(circle at 84% 12%, rgba(11, 96, 182, 0.12) 0 7px, transparent 8px),
    radial-gradient(circle at 90% 23%, rgba(11, 96, 182, 0.18) 0 25px, transparent 26px),
    radial-gradient(circle at 94% 28%, rgba(11, 96, 182, 0.14) 0 10px, transparent 11px),
    linear-gradient(180deg, #f7fbff 0%, #eef7ff 54%, #f8fbff 100%);
  overflow: hidden;

}

#beneficios::before,
#beneficios::after {

  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;

}

#beneficios::before {

  width: 520px;
  height: 290px;
  left: -70px;
  top: 40px;
  border: 1px solid rgba(46, 125, 220, 0.16);
  border-color: transparent transparent rgba(46, 125, 220, 0.16) transparent;
  border-radius: 50%;
  transform: rotate(-20deg);

}

#beneficios::after {

  width: 620px;
  height: 260px;
  right: -120px;
  bottom: 80px;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 22px, rgba(46, 125, 220, 0.1) 23px 24px, transparent 25px 44px);
  border-radius: 50%;
  transform: rotate(6deg);

}

#beneficios .container {

  position: relative;
  z-index: 1;

}

#beneficios .section-header {

  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin-bottom: 18px;
  line-height: 1;

}

#beneficios .badge-primary {

  padding: 7px 16px 7px 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  background-color: #e0f2fe;
  color: #0b5ea6;
  box-shadow: 0 8px 18px rgba(11, 76, 140, 0.08);

}

#beneficios .badge-primary svg {

  color: var(--color-white);
  background: #2f7df0;
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;

}

#beneficios .section-title {

  margin-top: 12px;
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 3.75vw, 3.12rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);

}

#beneficios .section-title span {

  color: #2f7df0;
  position: relative;
  display: inline-block;

}

#beneficios .section-title span::after {

  content: '';
  position: absolute;
  left: 68%;
  right: 0;
  bottom: -7px;
  height: 4px;
  background: #2f7df0;
  border-radius: var(--radius-full);
  transform: rotate(2deg);

}

#beneficios .section-desc {

  max-width: 620px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.04rem;
  line-height: 1.52;

}

.benefits-grid {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;

}

.benefit-card {

  --benefit-color: #2f7df0;
  --benefit-soft: rgba(47, 125, 240, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.92) 62%, rgba(239, 247, 255, 0.86) 100%);
  min-height: 0;
  height: 346px;
  padding: 26px 26px 82px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(11, 76, 140, 0.09), inset 0 0 0 1px rgba(255,255,255,0.85);
  border: 1px solid rgba(172, 204, 239, 0.7);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;

}

.benefit-card::before {

  content: '';
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -58px;
  height: 128px;
  border-radius: 50% 50% 0 0;
  background: var(--benefit-soft);
  opacity: 1;
  transition: transform var(--transition-normal);

}

.benefit-card:hover {

  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(11, 76, 140, 0.14);

}

.benefit-card:hover::before {

  transform: translateY(-4px);

}

.benefit-icon {

  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--benefit-soft);
  color: var(--benefit-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;

}

.benefit-card h3 {

  font-size: 1.28rem;
  line-height: 1.08;
  margin-bottom: 10px;
  letter-spacing: 0;
  position: relative;
  z-index: 1;

}

.benefit-card h3 span {

  display: block;
  color: var(--benefit-color);

}

.benefit-card h3::after {

  content: '';
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 8px;
  background: var(--benefit-color);
  border-radius: var(--radius-full);

}

.benefit-card p {

  font-size: 0.88rem;
  color: #475569;
  line-height: 1.48;
  font-weight: 500;
  position: relative;
  z-index: 1;

}

.benefit-express {

  --benefit-color: #22b96f;
  --benefit-soft: rgba(34, 185, 111, 0.15);

}

.benefit-day {

  --benefit-color: #e8a000;
  --benefit-soft: rgba(232, 160, 0, 0.16);

}

.benefit-zone {

  --benefit-color: #7542d8;
  --benefit-soft: rgba(117, 66, 216, 0.16);

}

.benefit-illustration {

  position: absolute;
  right: 28px;
  bottom: 20px;
  z-index: 1;
  filter: drop-shadow(0 12px 12px rgba(11, 76, 140, 0.16));

}

.benefit-van {

  width: 104px;
  height: 52px;
  right: 50px;
  bottom: 20px;
  background:
    radial-gradient(circle at 24px 48px, #0f172a 0 7px, transparent 8px),
    radial-gradient(circle at 88px 48px, #0f172a 0 7px, transparent 8px),
    linear-gradient(90deg, #ffffff 0 60%, #dff0ff 60% 100%);
  border: 2px solid #b7d7f6;
  border-radius: 10px 18px 9px 9px;

}

.benefit-van::before {

  content: '';
  position: absolute;
  left: 16px;
  top: 14px;
  width: 32px;
  height: 20px;
  background: #d8efff;
  border: 2px solid #2f7df0;
  border-radius: 4px;

}

.benefit-van::after {

  content: '';
  position: absolute;
  right: -30px;
  bottom: 8px;
  width: 28px;
  height: 38px;
  background: radial-gradient(circle at 50% 35%, #ffffff 0 5px, transparent 6px), #2f7df0;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);

}

.benefit-clock {

  width: 70px;
  height: 70px;
  right: 42px;
  bottom: 18px;
  border: 7px solid #24c078;
  border-radius: 50%;
  background: radial-gradient(circle, #e9fff4 0 56%, #b7f0d6 57%);

}

.benefit-clock::before {

  content: '';
  position: absolute;
  left: 36px;
  top: 18px;
  width: 4px;
  height: 25px;
  background: #12965a;
  transform-origin: bottom;
  transform: rotate(38deg);
  border-radius: 6px;

}

.benefit-clock::after {

  content: '';
  position: absolute;
  left: -38px;
  top: 30px;
  width: 32px;
  height: 20px;
  border-top: 3px solid #24c078;
  border-bottom: 3px solid #24c078;

}

.benefit-basket {

  width: 78px;
  height: 62px;
  right: 38px;
  bottom: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.9) 0 18px, #8dbfec 18px 56px, rgba(255,255,255,0.95) 56px 100%),
    #d29b5b;
  border-radius: 8px 8px 15px 15px;

}

.benefit-basket::before {

  content: '';
  position: absolute;
  left: 8px;
  top: 26px;
  right: 8px;
  bottom: 0;
  background:
    repeating-linear-gradient(90deg, rgba(102, 62, 23, 0.35) 0 2px, transparent 2px 12px),
    linear-gradient(#d5a161, #b87a36);
  border-radius: 4px 4px 14px 14px;

}

.benefit-basket::after {

  content: '';
  position: absolute;
  left: 22px;
  top: -8px;
  width: 48px;
  height: 18px;
  border-top: 7px solid #f9fbff;
  border-radius: 50%;

}

.benefit-map {

  width: 102px;
  height: 66px;
  right: 28px;
  bottom: 14px;
  background:
    linear-gradient(135deg, #ffffff 0 34%, #e9ddff 34% 64%, #ffffff 64%);
  border: 2px solid #d5c2ff;
  transform: perspective(100px) rotateX(20deg);
  border-radius: 8px;

}

.benefit-map::before {

  content: '';
  position: absolute;
  left: 42px;
  top: -34px;
  width: 38px;
  height: 52px;
  background: radial-gradient(circle at 50% 35%, #ffffff 0 8px, transparent 9px), #7542d8;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);

}

.benefit-map::after {

  content: '';
  position: absolute;
  left: 34px;
  top: 28px;
  width: 54px;
  height: 18px;
  border: 3px solid rgba(117, 66, 216, 0.3);
  border-radius: 50%;

}

.benefits-trust-pill {

  width: max-content;
  max-width: min(100%, 440px);
  margin: 10px auto 0;
  padding: 10px 32px 10px 13px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(172, 204, 239, 0.66);
  border-radius: var(--radius-full);
  box-shadow: 0 16px 38px rgba(11, 76, 140, 0.09);

}

.trust-icon {

  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #2f7df0, #0b5ea6);
  box-shadow: 0 0 0 10px rgba(47, 125, 240, 0.12);

}

.trust-icon svg {

  width: 23px;
  height: 23px;

}

.benefits-trust-pill strong,
.benefits-trust-pill small {

  display: block;
  line-height: 1.25;

}

.benefits-trust-pill strong {

  color: #0f2b5f;
  font-size: 0.98rem;

}

.benefits-trust-pill small {

  color: #64748b;
  font-size: 0.84rem;
  font-weight: 600;
  margin-top: 3px;

}

.benefits-scene,
.benefits-leaves {

  position: absolute;
  pointer-events: none;
  z-index: 0;

}

.benefits-scene-left {

  left: -118px;
  top: 196px;
  width: 250px;
  height: 220px;

}

.towel-stack {

  position: absolute;
  left: 0;
  top: 0;
  width: 220px;
  height: 116px;

}

.towel-stack span,
.soft-towels span {

  position: absolute;
  left: 0;
  width: 210px;
  height: 34px;
  background: linear-gradient(180deg, #ffffff, #edf5ff);
  border-radius: 22px 12px 12px 22px;
  box-shadow: 0 12px 30px rgba(11, 76, 140, 0.11);

}

.towel-stack span:nth-child(2) {

  top: 32px;
  background: linear-gradient(180deg, #e6f2ff, #98c8f3);

}

.towel-stack span:nth-child(3) {

  top: 64px;
  background: linear-gradient(180deg, #fff, #f1f5f9);

}

.basket-base {

  position: absolute;
  left: 6px;
  top: 88px;
  width: 220px;
  height: 74px;
  background:
    repeating-linear-gradient(90deg, rgba(94, 57, 22, 0.3) 0 4px, transparent 4px 16px),
    linear-gradient(180deg, #d8a66b, #a96b32);
  border-radius: 7px 7px 22px 22px;

}

.benefits-scene-right {

  right: -42px;
  bottom: 24px;
  width: 180px;
  height: 118px;

}

.soft-towels span {

  width: 160px;
  right: 0;
  left: auto;

}

.soft-towels span:nth-child(2) {

  top: 30px;
  background: linear-gradient(180deg, #e1f0ff, #9fcdf4);

}

.soft-towels span:nth-child(3) {

  top: 60px;

}

.benefits-leaves {

  width: 150px;
  height: 160px;
  filter: blur(2px);
  opacity: 0.68;
  background:
    radial-gradient(ellipse at 30% 20%, #71b13b 0 16px, transparent 17px),
    radial-gradient(ellipse at 63% 35%, #4e9428 0 20px, transparent 21px),
    radial-gradient(ellipse at 28% 68%, #8bcf5a 0 22px, transparent 23px),
    radial-gradient(ellipse at 78% 76%, #5ca933 0 19px, transparent 20px);

}

.benefits-leaves-left {

  left: -64px;
  bottom: 112px;
  transform: rotate(-18deg);

}

.benefits-leaves-right {

  right: -54px;
  bottom: 120px;
  transform: rotate(18deg);

}

/* --- Services Section --- */
.services-tabs-container {

  margin-bottom: 40px;

}

.services-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

}

.services-category-card {

  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px; /* Reducido de 36px 30px para encajar mejor el contenido en pantallas medianas/laptops */
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  height: 100%;

}

.services-category-card.highlighted {

  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-md);

}

.category-header {

  margin-bottom: 16px; /* Reducido de 28px */
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px; /* Reducido de 20px */
  display: flex;
  align-items: center;
  gap: 14px;

}

.category-icon {

  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;

}

.category-header h3 {

  font-size: 1.35rem;

}

.services-list {

  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reducido de 16px para compactar la altura del card */
  margin-bottom: 20px; /* Reducido de 32px */
  flex-grow: 1;

}

.service-item {

  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;

}

.service-name {

  font-weight: 500;
  color: var(--color-text-dark);

}

.service-price {

  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
  background-color: var(--color-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);

}

.service-description {

  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;

}

.service-item-complex {

  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px dashed var(--color-border);
  padding-bottom: 8px; /* Reducido de 12px */

}

.service-item-complex:last-child {

  border-bottom: none;
  padding-bottom: 0;

}

.service-header-row {

  display: flex;
  justify-content: space-between;
  align-items: center;

}

/* --- Colchas y Acolchados (Special Section) --- */
.acolchados-container {

  background: radial-gradient(circle at 10% 10%, rgba(224, 242, 254, 0.4) 0%, rgba(255, 255, 255, 0) 60%),
              var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 48px;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
  scroll-margin-top: 90px;

}

.acolchados-layout {

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;

}

.acolchados-info h3 {

  font-size: 1.85rem;
  margin-bottom: 16px;

}

.acolchados-info p {

  color: var(--color-text-body);
  margin-bottom: 24px;

}

.acolchados-features-list {

  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;

}

.acolchados-features-list li {

  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;

}

.acolchados-features-list li svg {

  color: var(--color-primary);
  width: 20px;
  height: 20px;

}

.acolchados-table-wrapper {

  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;

}

.acolchados-table {

  width: 100%;
  border-collapse: collapse;

}

.acolchados-table th, 
.acolchados-table td {

  padding: 16px 20px;
  text-align: left;

}

.acolchados-table th {

  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;

}

.acolchados-table tr:not(:last-child) {

  border-bottom: 1px solid var(--color-border);

}

.acolchados-table td {

  font-size: 0.95rem;

}

.acolchados-table td.col-size {

  font-weight: 600;
  color: var(--color-text-dark);

}

.acolchados-table td.col-price {

  font-weight: 700;
  color: var(--color-primary);
  text-align: right;

}

.acolchados-table td.col-plumas {

  font-weight: 700;
  color: var(--color-accent);
  text-align: right;

}

/* --- Promotions Section --- */
.promos-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;

}

.promo-card {

  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;

}

.promo-card:hover {

  transform: translateY(-5px);
  box-shadow: var(--shadow-md);

}

.promo-ribbon {

  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 30px;
  transform: rotate(45deg);
  text-transform: uppercase;

}

.promo-title {

  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-top: 12px;

}

.promo-value {

  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 12px 0;

}

.promo-desc {

  font-size: 0.95rem;
  color: var(--color-text-body);
  flex-grow: 1;
  margin-bottom: 20px;

}

/* Weekly Promos Slider/Grid */
.weekly-title-wrap {

  text-align: center;
  margin-bottom: 36px;

}

.weekly-title-wrap h3 {

  font-size: 1.5rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;

}

.weekly-title-wrap h3::before,
.weekly-title-wrap h3::after {

  content: '';
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary-hover);

}

.weekly-grid {

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;

}

.weekly-card {

  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;

}

.weekly-card:hover {

  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);

}

.weekly-day {

  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin: 0 auto 16px auto;

}

.weekly-card.lunes .weekly-day {
 background-color: #fee2e2; color: #dc2626; 
}

.weekly-card.martes .weekly-day {
 background-color: #fef3c7; color: #d97706; 
}

.weekly-card.miercoles .weekly-day {
 background-color: #dcfce7; color: #16a34a; 
}

.weekly-card.jueves .weekly-day {
 background-color: #e0f2fe; color: #0284c7; 
}

.weekly-card.viernes .weekly-day {
 background-color: #fae8ff; color: #c084fc; 
}

.weekly-card.sabado .weekly-day {
 background-color: #ffedd5; color: #ea580c; 
}

.weekly-promo-name {

  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  flex-grow: 1;

}

.weekly-promo-price {

  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);

}

.weekly-promo-desc {

  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;

}

/* --- Cómo Funciona (Steps) --- */
.steps-grid {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;

}

/* Connection line on desktop */
.steps-grid::before {

  content: '';
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--color-border);
  z-index: 1;

}

.step-card {

  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.step-number {

  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--color-white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;

}

.step-icon-circle {

  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  transition: all var(--transition-normal);

}

.step-card:hover .step-icon-circle {

  transform: scale(1.1);
  color: var(--color-white);
  background-color: var(--color-primary);

}

.step-card h3 {

  font-size: 1.15rem;
  margin-bottom: 8px;

}

.step-card p {

  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 220px;

}

/* --- Zona de Cobertura --- */
.coverage-layout {

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;

}

.coverage-details h3 {

  font-size: 1.85rem;
  margin-bottom: 16px;

}

.coverage-list {

  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;

}

.coverage-item-check {

  display: flex;
  align-items: flex-start;
  gap: 12px;

}

.coverage-item-check svg {

  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;

}

.coverage-item-check h4 {

  font-size: 1.05rem;
  margin-bottom: 4px;

}

.coverage-item-check p {

  font-size: 0.9rem;
  color: var(--color-text-muted);

}

.coverage-map-box {

  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

/* SVG stylized local map graphic */
.map-illustration {

  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 24px;
  animation: pulse-light 3s ease-in-out infinite alternate;

}

@keyframes pulse-light {

  0% { transform: scale(1); opacity: 0.95; }
  100% { transform: scale(1.03); opacity: 1; }

}

.coverage-badge-street {

  background-color: var(--color-accent-light);
  color: var(--color-accent);
  border: 1px solid rgba(180, 83, 9, 0.2);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  max-width: 400px;

}

/* --- FAQ Section --- */
.faq-list {

  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;

}

.faq-item {

  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);

}

.faq-item:hover {

  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary);

}

.faq-question {

  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  outline: none;

}

.faq-icon {

  width: 24px;
  height: 24px;
  transition: transform var(--transition-normal);
  color: var(--color-primary);
  flex-shrink: 0;

}

.faq-answer {

  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease;
  background-color: var(--color-bg-light);

}

.faq-answer-content {

  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--color-text-body);
  border-top: 1px solid transparent;

}

/* Active states for accordion */
.faq-item.active {

  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);

}

.faq-item.active .faq-icon {

  transform: rotate(180deg);

}

.faq-item.active .faq-answer {

  /* Dynamic height managed in JS, but this acts as fallback */
  border-top: 1px solid var(--color-border);

}

/* --- Galería Curada --- */
.showcase-section {

  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%);

}

.showcase-grid {

  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  grid-template-rows: 540px;
  gap: 20px;

}

.showcase-side {

  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-height: 0;

}

.gallery-item {

  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 4px solid var(--color-white);
  background-color: #dbeafe;
  cursor: pointer;
  transition: all var(--transition-normal);

}

.gallery-item-feature {

  min-height: 540px;

}

.gallery-item-promo {

  min-height: 0;

}

.gallery-item-promo .gallery-img {

  object-fit: contain;
  background-color: var(--color-white);

}

.gallery-item:hover {

  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  z-index: 10;

}

.gallery-img, 
.gallery-video {

  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;

}

.gallery-item:hover .gallery-img {

  transform: scale(1.05);

}

.gallery-caption {

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 56px 24px 22px;
  color: var(--color-white);
  background: linear-gradient(180deg, rgba(7, 53, 98, 0) 0%, rgba(7, 53, 98, 0.9) 100%);

}

.gallery-caption span {

  color: var(--color-secondary-hover);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

}

.gallery-caption strong {

  font-size: 1.2rem;
  line-height: 1.25;

}

.gallery-caption-compact {

  padding: 42px 18px 16px;

}

.gallery-caption-compact strong {

  font-size: 1rem;

}

.media-heading {

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin: 48px 0 20px;

}

.media-heading h3 {

  margin-top: 12px;
  font-size: 1.55rem;

}

.media-heading p {

  max-width: 370px;
  color: var(--color-text-muted);
  text-align: right;

}

.media-grid {

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

}

.gallery-item-media {

  aspect-ratio: 4 / 3;

}

.gallery-video-wrapper {

  position: relative;
  height: 100%;

}

.gallery-video-play-btn {

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(11, 76, 140, 0.9);
  color: var(--color-white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform var(--transition-normal);

}

.gallery-item:hover .gallery-video-play-btn {

  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--color-primary);

}

/* Lightbox Modal */
.lightbox {

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;

}

.lightbox-content {

  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  animation: zoom-in 0.3s ease;

}

@keyframes zoom-in {

  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }

}

.lightbox-close {

  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 8px;

}

/* --- CTA Final --- */
.cta-final {

  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;

}

.cta-final::before {

  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(224,242,254,0.15) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;

}

.cta-content {

  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;

}

.cta-final h2 {

  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;

}

.cta-final p {

  font-size: 1.15rem;
  color: var(--color-secondary);
  margin-bottom: 32px;
  opacity: 0.9;

}

/* --- Footer --- */
.footer {

  background-color: var(--color-text-dark);
  color: #94a3b8; /* Slate 400 */
  padding: 64px 0 28px 0;
  font-size: 0.95rem;
  border-top: 4px solid var(--color-primary);

}

.footer-grid {

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;

}

.footer-brand {

  display: flex;
  flex-direction: column;
  gap: 16px;

}

.footer-logo {

  display: flex;
  align-items: center;
  gap: 12px;

}

.footer-logo img {

  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: contain;
  background-color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.18);

}

.footer-logo h3 {

  color: var(--color-white);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;

}

.footer-brand p {

  line-height: 1.5;

}

.footer-title {

  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;

}

.footer-title::after {

  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-primary);

}

.footer-links {

  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;

}

.footer-links a {

  transition: color var(--transition-fast);

}

.footer-links a:hover {

  color: var(--color-white);

}

.footer-contact-item {

  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;

}

.footer-contact-item svg {

  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;

}

.footer-bottom {

  border-top: 1px solid #334155;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;

}

.footer-socials {

  display: flex;
  gap: 16px;

}

.footer-social-btn {

  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #334155;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);

}

.footer-social-btn:hover {

  background-color: var(--color-primary);
  transform: translateY(-2px);

}

/* ==========================================================================
   Epic Upgrade Custom Styles (Calculator, Simulator, Theme Toggles & Bubbles)
   ========================================================================== */

/* --- Contenedor de Controles de Cabecera (Agrupación para mobile) --- */
.header-controls {

  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;

}

@media (max-width: 768px) {
.header-controls {

    gap: 8px;
  
}
}

/* --- Fondo de Burbujas Animadas --- */
.bubbles-bg-container {

  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;

}

.bubble-particle {

  position: absolute;
  bottom: -50px;
  background-color: rgba(186, 230, 253, 0.25);
  border-radius: 50%;
  animation: float-up 10s linear infinite;
  border: 1px solid rgba(255, 255, 255, 0.2);

}

@keyframes float-up {

  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-110vh) scale(1.2) rotate(360deg);
    opacity: 0;
  }

}

/* --- Cotizador Inteligente --- */
.calculator-container {

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  scroll-margin-top: 90px;

}

.promo-calc-banner {

  background: linear-gradient(90deg, var(--color-accent-light), #fef08a);
  border: 1px solid rgba(180, 83, 9, 0.25);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: pulse-border 2s infinite alternate;

}

@keyframes pulse-border {

  from { box-shadow: 0 0 0 0px rgba(11, 76, 140, 0.08); }
  to { box-shadow: 0 0 12px 4px rgba(11, 76, 140, 0.18); }

}

.promo-banner-icon {

  font-size: 1.5rem;

}

.promo-banner-text {

  flex-grow: 1;
  font-size: 0.95rem;

}

.calculator-grid {

  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: start;

}

.calc-section {

  background: rgba(248, 250, 252, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;

}

.calc-section h4 {

  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 8px;

}

.calc-row {

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--color-border);

}

.calc-row:last-child {

  border-bottom: none;

}

.calc-item-label {

  display: flex;
  flex-direction: column;
  padding-right: 12px;

}

.calc-item-label strong {

  font-size: 0.95rem;
  color: var(--color-text-dark);

}

.calc-item-label span {

  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 2px;

}

.calc-item-control {

  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 3px;
  box-shadow: var(--shadow-sm);

}

.btn-calc-minus,
.btn-calc-plus {

  background: none;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text-dark);

}

.btn-calc-minus:hover,
.btn-calc-plus:hover {

  background-color: var(--color-secondary);
  color: var(--color-primary);

}

.calc-item-control input {

  width: 32px;
  border: none;
  text-align: center;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.05rem;
  background: none;
  color: var(--color-text-dark);
  outline: none;

}

/* --- Recibo del Cotizador --- */
.calculator-receipt-wrapper {

  position: sticky;
  top: 100px;

}

.calculator-receipt {

  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  position: relative;
  border: 1px solid var(--color-border);

}

/* Efecto papel cortado */
.calculator-receipt::before,
.calculator-receipt::after {

  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  height: 10px;
  background-size: 14px 10px;

}

.calculator-receipt::before {

  top: -10px;
  background-image: radial-gradient(circle at 7px -3px, transparent 8px, #ffffff 8px);

}

.calculator-receipt::after {

  bottom: -10px;
  background-image: radial-gradient(circle at 7px 13px, transparent 8px, #ffffff 8px);

}

.receipt-title {

  text-align: center;
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  text-transform: uppercase;

}

.receipt-date {

  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-family: monospace;

}

.receipt-items-container {

  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--color-text-body);
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;

}

.empty-receipt-msg {

  text-align: center;
  color: var(--color-text-muted);
  font-style: italic;
  padding: 24px 0;

}

.receipt-item-row {

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

}

.receipt-item-qty-name {

  max-width: 75%;

}

.receipt-divider {

  border-top: 1px dashed var(--color-border);
  margin: 20px 0;

}

.receipt-totals {

  font-family: monospace;
  display: flex;
  flex-direction: column;
  gap: 8px;

}

.total-row {

  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;

}

.discount-row {

  color: #ea580c;
  font-weight: 700;

}

.final-total-row {

  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-top: 4px;

}

.receipt-notes {

  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  font-family: monospace;
  text-align: center;

}

/* --- Google Maps Section --- */
.google-maps-box {

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  height: 100%;
  transition: all var(--transition-normal);

}

.google-maps-box:hover {

  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);

}

.maps-iframe {

  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-normal);

}

.maps-info-card {

  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all var(--transition-normal);

}

.maps-info-header {

  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);

}

.maps-info-header h4 {

  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;

}

.pin-icon {

  color: var(--color-primary);

}

.maps-address {

  font-size: 0.9rem;
  color: var(--color-text-body);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;

}

.maps-redirect-btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 4px;

}

/* --- Verificador de Cobertura --- */
.coverage-search-box input:focus {

  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(11, 76, 140, 0.15);

}

.coverage-result {

  border: 1px solid transparent;

}

.coverage-result.success {

  background-color: #dcfce7;
  color: #166534;
  border-color: rgba(22, 101, 52, 0.15);

}

.coverage-result.warning {

  background-color: #fef3c7;
  color: #92400e;
  border-color: rgba(146, 64, 14, 0.15);

}

@keyframes fade-in-up {

  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }

}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {

  .hero-title {
    font-size: 2.75rem;
  }
  #beneficios {
    min-height: auto;
    padding: 28px 0 44px;
  }
  .benefits-scene,
  .benefits-leaves {
    display: none;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .weekly-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
.section {

    padding: 36px 0; /* Reducido de 60px para optimizar el encuadre en mobile */
  
}

.hero {

    min-height: auto;
    padding: 48px 0 34px;
  
}

.hero > .container {

    padding-left: 18px;
    padding-right: 18px;
  
}

.hero-grid {

    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 28px;
    min-height: auto;
  
}

.hero-text {

    text-align: left;
  
}

.hero-title {

    font-size: 2.65rem;
    margin-top: 30px;
  
}

.hero-subtitle {

    font-size: 1.04rem;
  
}

.hero-paper-plane {

    display: none;
  
}

.hero-image-wrapper {

    min-height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
  
}

.hero-image-wrapper::before {

    display: none;
  
}

.hero-logo-showcase::before,
  .hero-logo-showcase::after {

    display: none;
  
}

.hero-logo-container {

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 320px;
  
}

.hero-logo-orbit {

    width: 300px;
    height: 300px;
  
}

.hero-main-logo {

    width: 260px;
    height: 260px;
    border-radius: 50%;
    padding: 20px;
  
}

.hero-logo-caption {

    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
  
}

.hero-badge-float {

    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    padding: 16px 20px;
    border-radius: 20px;
    gap: 12px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    animation: none !important;
    box-shadow: var(--shadow-md);
  
}

.hero-badge-float.badge-left {

    min-width: 0;
    max-width: 340px;
  
}

.hero-badge-float.badge-right {

    min-width: 0;
    max-width: 340px;
  
}

.badge-icon-circle {

    width: 44px;
    height: 44px;
  
}

.hero-features {

    grid-column: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
  
}

.hero-feature-item {

    border-right: 0;
    padding: 0;
  
}

.hero-feature-item span {

    width: 38px;
    height: 38px;
    flex-basis: 38px;
  
}

#beneficios {

    padding: 30px 0 40px;
  
}

#beneficios .section-header {

    margin-bottom: 28px;
  
}

#beneficios .section-title {

    font-size: 1.85rem;
  
}

#beneficios .section-desc {

    font-size: 1rem;
  
}

.nav-container {

    padding: 0 16px; /* Aumenta el ancho interno útil en cabeceras móviles */
  
}

.logo-img {

    width: 42px;
    height: 42px;
  
}

.logo-text {

    font-size: 1.15rem;
  
}

.menu-toggle {

    display: block;
    padding: 6px;
    margin-left: 2px;
  
}

.calculator-grid {

    grid-template-columns: 1fr !important; /* Fuerza 1 columna en mobile para evitar compresión y roturas */
    gap: 24px;
  
}

.calculator-receipt-wrapper {

    position: static !important; /* Desactiva sticky en mobile para permitir scroll natural */
    width: 100%;
  
}

.nav-menu {

    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform var(--transition-normal);
  
}

.nav-menu.open {

    transform: translateY(0);
  
}

.nav-actions {

    display: none;
  
}

.hero-subtitle {

    margin-left: 0;
    margin-right: 0;
  
}

.hero-cta {

    justify-content: flex-start;
  
}

.services-grid {

    grid-template-columns: 1fr;
  
}

.acolchados-layout {

    grid-template-columns: 1fr;
    gap: 32px;
  
}

.promos-grid {

    grid-template-columns: 1fr;
  
}

.weekly-grid {

    grid-template-columns: repeat(2, 1fr);
  
}

.steps-grid {

    grid-template-columns: 1fr;
    gap: 40px;
  
}

.steps-grid::before {

    display: none;
  
}

.coverage-layout {

    grid-template-columns: 1fr;
    gap: 32px;
  
}

.showcase-grid {

    grid-template-columns: 1fr;
    grid-template-rows: auto;
  
}

.gallery-item-feature {

    min-height: 380px;
  
}

.showcase-side {

    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  
}

.gallery-item-promo {

    min-height: 220px;
  
}

.media-heading {

    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  
}

.media-heading p {

    text-align: left;
  
}

.footer-grid {

    grid-template-columns: 1fr;
    gap: 36px;
  
}

.footer-bottom {

    flex-direction: column;
    gap: 16px;
    text-align: center;
  
}
}

@media (max-width: 480px) {
.logo-subtext {

    display: none; /* Oculta Solymar en pantallas extra pequeñas para evitar que empuje los botones de la cabecera */
  
}

.logo-text {

    font-size: 1.05rem;
  
}

.hero-title {

    font-size: 2.25rem;
  
}

.benefits-grid {

    grid-template-columns: 1fr;
  
}

.benefit-card {

    min-height: 0;
    padding: 28px 26px 108px;
  
}

.benefits-trust-pill {

    width: 100%;
    align-items: flex-start;
    border-radius: 24px;
    padding-right: 18px;
  
}

.weekly-grid {

    grid-template-columns: 1fr;
  
}

.acolchados-container {

    padding: 24px;
  
}

.acolchados-table th, 
  .acolchados-table td {

    padding: 12px 10px;
    font-size: 0.85rem;
  
}

.showcase-side,
  .media-grid {

    grid-template-columns: 1fr;
  
}

.gallery-item-feature {

    min-height: 300px;
  
}

.gallery-item-promo {

    min-height: 240px;

}
}

/* ==========================================================================
   COTIZADOR: Botón CTA + Popup (Modal)
   ========================================================================== */
.cotizador-cta {

  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: 0 25px 45px -12px rgba(11, 76, 140, 0.45);

}

/* Brillo decorativo de fondo */
.cotizador-cta::before {

  content: '';
  position: absolute;
  top: -60%;
  right: -8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;

}

.cotizador-cta-icon {

  position: relative;
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);

}

/* Anillo pulsante alrededor del ícono */
.cotizador-cta-icon::after {

  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: cotizador-pulse 2s ease-out infinite;

}

@keyframes cotizador-pulse {

  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }

}

.cotizador-cta-text {

  position: relative;
  flex: 1 1 320px;

}

.cotizador-cta-text h3 {

  font-size: 1.7rem;
  color: var(--color-white);
  margin: 6px 0 8px;

}

.cotizador-cta-text p {

  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 560px;

}

.cotizador-cta-btn {

  position: relative;
  flex-shrink: 0;
  background: var(--color-white) !important;
  color: var(--color-primary) !important;
  border-color: var(--color-white) !important;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  animation: cotizador-btn-bounce 2.6s ease-in-out infinite;

}

.cotizador-cta-btn:hover {

  background: var(--color-accent-light) !important;
  color: var(--color-primary-dark) !important;
  border-color: var(--color-accent-light) !important;
  transform: translateY(-3px);
  animation-play-state: paused;

}

@keyframes cotizador-btn-bounce {

  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }

}

/* Overlay del popup */
.cotizador-modal {

  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;

}

.cotizador-modal.open {

  display: flex;

}

.cotizador-modal-dialog {

  position: relative;
  width: 100%;
  max-width: 1040px;
  max-height: 92vh;
  display: flex;

}

.cotizador-modal .calculator-container {

  width: 100%;
  margin-top: 0 !important;
  max-height: 92vh;
  overflow-y: auto;
  animation: zoom-in 0.3s ease;

}

.cotizador-modal-close {

  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);

}

.cotizador-modal-close:hover {

  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);

}

@media (max-width: 768px) {

  .cotizador-cta {
    padding: 26px 22px;
    gap: 18px;
  }

  .cotizador-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .cotizador-modal {
    padding: 0;
    align-items: stretch;
  }

  .cotizador-modal-dialog {
    max-width: 100%;
    max-height: 100vh;
  }

  .cotizador-modal .calculator-container {
    max-height: 100vh;
    border-radius: 0;
    padding: 56px 18px 28px;
  }

}

/* ==========================================================================
   Calendario de Promos Semanales: tarjeta de hoy + colapsable en mobile
   ========================================================================== */
.weekly-card.is-today {

  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);

}

.weekly-toggle-wrap {

  text-align: center;

}

.weekly-toggle-btn {

  display: none;
  margin-top: 24px;

}

@media (max-width: 768px) {

  .weekly-promos-container.is-collapsible .weekly-card {
    display: none;
  }

  .weekly-promos-container.is-collapsible .weekly-card.is-today,
  .weekly-promos-container.is-collapsible.expanded .weekly-card {
    display: flex;
  }

  .weekly-promos-container.is-collapsible .weekly-toggle-btn {
    display: inline-flex;
  }

}

/* ==========================================================================
   Sliders horizontales reutilizables (tarjetas deslizables en mobile)
   ========================================================================== */
.slider-wrap {

  position: relative;

}

.slider-controls {

  display: none;

}

.slider-arrow {

  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);

}

.slider-arrow:hover:not(:disabled) {

  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);

}

.slider-arrow:disabled {

  opacity: 0.4;
  cursor: default;

}

@media (max-width: 768px) {

  .slider-track {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 4px;
    gap: 16px;
    padding: 8px 4px 18px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .slider-track::-webkit-scrollbar {
    display: none;
  }

  .slider-track > * {
    flex: 0 0 85%;
    min-width: 0;
    scroll-snap-align: center;
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }

}