/* ═══════════════════════════════════════════════════
   Servilletas de Tela — Landing Editorial
   Hero con imagen + overlay oscuro · tipografía clara
═══════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────── */
.hero-fiubags {
    --hb-dark:         #0e2422;
    --hb-dark2:        #1a3532;
    --hb-accent:       #6eaba5;
    --hb-cream:        #e8f5f3;
    --hb-muted:        rgba(255, 255, 255, 0.70);
    --hb-overlay-rgb:  14, 36, 34;
    --hb-fallback-bg:  #0a1e1c;
}

/* ═══════════════════════════════════════════════════
   HERO — editorial, overlay oscuro sobre imagen
═══════════════════════════════════════════════════ */
.hero-fiubags {
    position: relative;
    isolation: isolate;
    background: var(--hb-fallback-bg);
    padding: clamp(4rem, 8vw, 6rem) 0;
    min-height: 680px;
    display: flex;
    align-items: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    animation: hf-rise 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    margin-bottom: 0;
}

/* Imagen de fondo — full opacity, el overlay la oscurece */
.hero-fiubags::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hf-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

/* Overlay oscuro: más denso a la izquierda, respira a la derecha */
.hero-fiubags::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(var(--hb-overlay-rgb), 0.82) 0%,
        rgba(var(--hb-overlay-rgb), 0.68) 38%,
        rgba(var(--hb-overlay-rgb), 0.45) 62%,
        rgba(var(--hb-overlay-rgb), 0.22) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-fiubags .hf-container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    width: min(1140px, calc(100% - 30px));
    margin: 0 auto;
    padding: 0 15px;
}

/* ── Eyebrow ─────────────────────────────────────── */
.hero-fiubags .hf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.30);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    opacity: 0;
    animation: hf-fade 0.7s 0.1s ease-out forwards;
}
.hero-fiubags .hf-eyebrow svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--hb-accent);
}

/* ── Título ──────────────────────────────────────── */
.hero-fiubags .hf-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 5.4vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    max-width: 18ch;
    opacity: 0;
    animation: hf-rise-text 0.85s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-fiubags .hf-title .accent {
    color: var(--hb-accent);
}

/* ── Subtitle ────────────────────────────────────── */
.hero-fiubags .hf-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    line-height: 1.68;
    font-weight: 400;
    margin: 0 0 28px;
    opacity: 0;
    animation: hf-rise-text 0.85s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-fiubags .hf-subtitle em {
    font-style: italic;
    color: #fff;
    font-weight: 600;
}

/* ── Specs List ──────────────────────────────────── */
.hero-fiubags .hf-specs-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-fiubags .hf-specs-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0;
    animation: hf-fade 0.7s 0.4s ease-out forwards;
}

.hero-fiubags .hf-specs-list li .hf-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--hb-accent);
}

/* ── Actions ─────────────────────────────────────── */
.hero-fiubags .hf-actions {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: hf-fade 0.7s 0.5s ease-out forwards;
}

/* CTA principal — WhatsApp green */
.hero-fiubags .hf-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid #25D366;
}
.hero-fiubags .hf-cta:hover {
    background: #128C7E;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(18, 140, 126, 0.35);
}
.hero-fiubags .hf-cta:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 3px;
}
.hero-fiubags .hf-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.90;
}

/* CTA secundario — outline teal */
.hero-fiubags .hf-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hb-accent);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    border: 2px solid var(--hb-accent);
    box-shadow: 0 4px 12px rgba(66, 173, 165, 0.3);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-fiubags .hf-cta-secondary:hover {
    background: #2d8680;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 173, 165, 0.4);
}
.hero-fiubags .hf-cta-secondary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.9;
}

/* ── Microcopy ───────────────────────────────────── */
.hero-fiubags .hf-micro {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 0.88rem;
    color: var(--hb-muted);
    max-width: 44ch;
    margin: 0;
    line-height: 1.55;
    opacity: 0;
    animation: hf-fade 0.7s 0.65s ease-out forwards;
}

/* ── Animaciones ─────────────────────────────────── */
@keyframes hf-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hf-rise-text {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hf-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-fiubags {
        min-height: 600px;
    }

    .hero-fiubags .hf-title {
        max-width: 100%;
    }

    .hero-fiubags .hf-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-fiubags .hf-cta,
    .hero-fiubags .hf-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-fiubags .hf-specs-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-fiubags {
        min-height: 520px;
    }

    .hero-fiubags .hf-title {
        font-size: 1.8rem;
    }

    .hero-fiubags .hf-subtitle {
        font-size: 0.95rem;
    }

    .hero-fiubags .hf-specs-list li {
        font-size: 0.85rem;
        gap: 10px;
    }

    .hero-fiubags .hf-cta,
    .hero-fiubags .hf-cta-secondary {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-fiubags,
    .hero-fiubags * {
        animation: none !important;
        transition: none !important;
    }
}

/* ═══════════════════════════════════════════════════
   VARIANTES — .hero-fiubags--servilletas
═══════════════════════════════════════════════════ */
.hero-fiubags--servilletas {
    --hb-dark:        #0e2422;
    --hb-dark2:       #1a3532;
    --hb-accent:      #6eaba5;
    --hb-cream:       #e8f5f3;
    --hb-muted:       rgba(255, 255, 255, 0.70);
    --hb-overlay-rgb: 14, 36, 34;
    --hb-fallback-bg: #0a1e1c;
}

/* ═══════════════════════════════════════════════════
   SECCIÓN DE PRODUCTO — Estructura Lavandería
═══════════════════════════════════════════════════ */
.section.section-padding.border-bottom {
  background-color: #ffffff;
}

@media (max-width: 640px) {
  .section.section-padding.border-bottom {
    padding-top: 1rem !important;
  }
}

.lav-product-row {
  display: flex;
  flex-wrap: wrap;
}

.lav-gallery {
  order: 1;
}

.lav-info {
  order: 2;
}

/* Carrusel duplicado: oculto en desktop, visible en móvil */
.lav-product-images--mobile,
.lav-logos--mobile,
.lav-facturacion--mobile {
  display: none !important;
}

.lav-facturacion--desktop {
  display: block;
}

.lav-logos--desktop {
  display: flex;
}

/* Desktop: mostrar carrusel y logos originales */
@media (min-width: 769px) {
  .lav-gallery > .product-images {
    display: block !important;
  }

  .lav-logos--desktop {
    display: flex !important;
  }

  .lav-facturacion--desktop {
    display: block !important;
  }

  .lav-product-images--mobile {
    display: none !important;
  }
}

/* Móvil: reordenamiento y ocultamiento */
@media (max-width: 768px) {
  .lav-gallery {
    order: 2;
    margin-bottom: 0;
  }

  .lav-gallery > .product-images {
    display: none !important;
  }

  .lav-logos--desktop {
    display: none !important;
  }

  .lav-facturacion--desktop {
    display: none !important;
  }

  .product-images.lav-product-images--mobile {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
  }

  .product-images.lav-product-images--mobile .product-gallery-slider,
  .product-images.lav-product-images--mobile .product-thumb-slider {
    width: 100% !important;
    height: auto;
  }

  .lav-logos--mobile {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin: 20px 0;
  }

  .lav-facturacion--mobile {
    display: block !important;
  }
}

/* ═══════════════════════════════════════════════════
   PROMO Y COTIZADOR
═══════════════════════════════════════════════════ */
.lav-promo-costales {
    text-align: center;
    margin: 22px auto 20px;
    max-width: 520px;
}

.lav-promo-costales .product-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.lav-envio-gratis-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #15803d 0%, #16a34a 60%, #22c55e 100%);
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15);
    animation: lav-envio-pulse 2.8s ease-in-out infinite;
}

.lav-envio-gratis-banner svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.lav-envio-gratis-banner span:not(.lav-envio-gratis-banner__sub) {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    line-height: 1;
}

.lav-envio-gratis-banner__sub {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.9;
    background: rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 2px 8px;
}

@keyframes lav-envio-pulse {
    0%, 100% { box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15), 0 0 0 0 rgba(22,163,74,0); }
    50%       { box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15), 0 0 0 6px rgba(22,163,74,0.18); }
}

.lav-promo-copy {
    color: #333;
    font-size: 0.96rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════
   WIDGET DE COTIZACIÓN
═══════════════════════════════════════════════════ */
#prod-widget .hf-precio-card {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid #e8f5f4;
    box-shadow: 0 2px 16px rgba(66,173,165,0.10);
    padding: 20px 18px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
}

#prod-widget .hf-precio-card h2 {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 12px;
}

#prod-widget .lav-cotiza-header {
    text-align: center;
    margin-bottom: 16px;
}

#prod-widget .lav-cotiza-badge {
    display: inline-block;
    font-family: Poppins, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #42ADA5;
    background: #e8f8f7;
    border: 1px solid #c8ebe9;
    border-radius: 999px;
    padding: 5px 12px;
    margin-bottom: 10px;
}

/* Botones de paquete */
#prod-widget .lav-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}

#prod-widget .lav-pkg-btn {
    background: #f8fffe;
    border: 1.5px solid #c8ebe9;
    border-radius: 8px;
    padding: 8px 4px;
    color: #2a2a2a;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

#prod-widget .lav-pkg-btn:hover {
    background: #e8f8f7;
    border-color: #42ADA5;
}

#prod-widget .lav-pkg-btn.active {
    background: #42ADA5;
    border-color: #42ADA5;
    color: #fff;
}

#prod-widget .lav-pkg-qty {
    font-size: 0.80rem;
    font-weight: 700;
}

#prod-widget .lav-pkg-precio {
    font-size: 0.70rem;
    color: #42ADA5;
    font-weight: 600;
}

#prod-widget .lav-pkg-btn.active .lav-pkg-precio {
    color: rgba(255,255,255,0.85);
}

/* Stepper de cantidad */
#prod-widget .lav-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

#prod-widget .lav-qty-row label {
    color: #444;
    font-size: 0.85rem;
}

#prod-widget .lav-stepper {
    display: flex;
    align-items: center;
    background: #f5fffe;
    border: 1px solid #c8ebe9;
    border-radius: 8px;
    overflow: hidden;
}

#prod-widget .lav-step-btn {
    background: transparent;
    border: none;
    color: #42ADA5;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#prod-widget .lav-step-btn:hover {
    background: #e8f8f7;
}

#prod-widget #prodQtyInput {
    background: transparent;
    border: none;
    border-left: 1px solid #c8ebe9;
    border-right: 1px solid #c8ebe9;
    color: #1a1a1a;
    font-family: Poppins, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    width: 58px;
    padding: 6px 4px;
    -moz-appearance: textfield;
}

#prod-widget #prodQtyInput::-webkit-outer-spin-button,
#prod-widget #prodQtyInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Resumen */
#prod-widget .lav-resumen {
    background: #f0fbfa;
    border: 1px solid #c8ebe9;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
}

#prod-widget .lav-resumen-row {
    color: #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#prod-widget .lav-resumen-row strong {
    color: #1a1a1a;
}

#prod-widget .lav-resumen-envio {
    color: #888;
    font-size: 0.72rem;
    margin-top: 4px;
}

#prod-widget .lav-resumen-sin-precio {
    background: #f0fbfa;
    border: 1px solid #c8ebe9;
    border-radius: 12px;
    padding: 12px;
}

#prod-widget .lav-resumen-sin-precio strong {
    color: #42ADA5;
}

/* Botón WhatsApp */
.prod-wa-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 20px;
    color: #ffffff;
    background-color: #25D366;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 8px;
    transition: background-color .2s;
    border: none;
    cursor: pointer;
}

.prod-wa-cta-btn:hover {
    background-color: #1da851;
    color: #fff;
    text-decoration: none;
}

#prod-widget .nota-precios {
    color: #999;
    font-size: 0.75rem;
    text-align: center;
    margin-top: 10px;
}

/* ═══════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════ */
.product-breadcrumb-section {
  background-color: #ffffff;
  padding-bottom: 1rem;
}

@media (max-width: 640px) {
  .product-breadcrumb-section {
    padding-bottom: 0.5rem;
  }
}

.gbg-breadcrumb {
  background: transparent;
  padding: 24px 0 0;
  margin-bottom: -1px;
  font-family: 'Poppins', sans-serif;
  border-bottom: none;
}

.gbg-breadcrumb__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.gbg-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.gbg-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.gbg-breadcrumb__link {
  color: #6eaba5;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.gbg-breadcrumb__link:hover {
  color: #42ADA5;
  background: rgba(66, 173, 165, 0.08);
  text-decoration: none;
}

.gbg-breadcrumb__separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(110, 171, 165, 0.5);
  margin: 0 4px;
  transition: color 0.2s ease;
}

.gbg-breadcrumb__separator svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.gbg-breadcrumb__item:last-child .gbg-breadcrumb__separator {
  display: none;
}

.gbg-breadcrumb__item--active .gbg-breadcrumb__link {
  color: #42ADA5;
  font-weight: 600;
  background: rgba(66, 173, 165, 0.08);
}

@media (max-width: 640px) {
  .gbg-breadcrumb {
    padding: 18px 0 0;
    margin-bottom: -1px;
  }

  .gbg-breadcrumb__container {
    padding: 0 16px;
  }

  .gbg-breadcrumb__link {
    font-size: 0.8rem;
    padding: 3px 6px;
  }

  .gbg-breadcrumb__separator {
    width: 18px;
    height: 18px;
    margin: 0 3px;
  }
}

/* ═══════════════════════════════════════════════════
   RATINGS — Estrellas y comentarios
═══════════════════════════════════════════════════ */
.gbg-ratings-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 0;
  justify-content: center;
}

.gbg-stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.gbg-star {
  font-size: 24px;
  color: #FFD700;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  transition: all 0.2s ease;
  line-height: 1;
}

.gbg-star:hover {
  transform: scale(1.15);
  color: #FFC700;
  text-shadow: 0 2px 6px rgba(255, 215, 0, 0.5);
}

.gbg-reviews-text {
  color: #6eaba5;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .gbg-ratings-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .gbg-reviews-text {
    font-size: 12px;
  }

  .gbg-star {
    font-size: 20px;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN PAQUETES DISPONIBLES
═══════════════════════════════════════════════════ */

.srv-section-packages {
  padding: 4rem 0;
  background-color: #f4faf9;
}

@media (min-width: 1024px) {
  .srv-section-packages {
    padding: 5rem 0;
  }
}

.srv-packages-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

.srv-packages-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .srv-packages-header {
    margin-bottom: 4rem;
  }
}

.srv-packages-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e8f8f7;
  color: #42ADA5;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.srv-packages-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.625;
}

@media (min-width: 1024px) {
  .srv-packages-description {
    font-size: 1.125rem;
  }
}

.srv-packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .srv-packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.srv-package-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 2px solid #e8f5f4;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.srv-package-card:hover {
  border-color: #42ADA5;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .srv-package-card:nth-child(2) {
    transform: scale(1.05);
  }
}

.srv-package-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .srv-package-content {
    padding: 2rem;
  }
}

.srv-package-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: #eaf7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-package-icon svg {
  width: 24px;
  height: 24px;
  color: #42ADA5;
}

.srv-package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

.srv-package-description {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  flex: 1;
}

.srv-package-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eaf7f5;
  font-size: 0.75rem;
}

.srv-package-info-label {
  color: #999;
}

.srv-package-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #666;
}

.srv-package-info-list li {
  margin-top: 0.25rem;
}

.srv-package-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 1rem;
}

.srv-package-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.srv-package-cta-teal {
  background-color: #42ADA5;
}

.srv-package-cta-teal:hover {
  background-color: #34928b;
}

.srv-package-cta-green {
  background-color: #25D366;
}

.srv-package-cta-green:hover {
  background-color: #1da851;
}

/* ═══════════════════════════════════════════════════
   SECCIÓN NAVEGACIÓN HACIA NECESIDADES
═══════════════════════════════════════════════════ */

.srv-section-occasions {
  padding: 4rem 0;
  background-color: #f4faf9;
}

@media (min-width: 1024px) {
  .srv-section-occasions {
    padding: 5rem 0;
  }
}

.srv-occasions-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

.srv-occasions-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .srv-occasions-header {
    margin-bottom: 4rem;
  }
}

.srv-occasions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .srv-occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .srv-occasions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.srv-occasion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #e0f0ee;
  border-radius: 16px;
  overflow: hidden;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .srv-occasion-card {
    padding: 2rem;
  }
}

.srv-occasion-card:hover {
  border-color: #42ADA5;
  box-shadow: 0 6px 28px rgba(66, 173, 165, 0.15);
  transform: translateY(-3px);
}

.srv-occasion-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background-color: #eaf7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.srv-occasion-icon svg {
  width: 24px;
  height: 24px;
  color: #42ADA5;
}

.srv-occasion-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f2422;
  margin-bottom: 0.5rem;
}

.srv-occasion-description {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.62;
  margin-bottom: 1rem;
  flex: 1;
}

.srv-occasion-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  background-color: #42ADA5;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.srv-occasion-cta:hover {
  background-color: #34928b;
}

.srv-occasion-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   SECCIÓN PERSONALIZACIÓN — 2 COLUMNAS
═══════════════════════════════════════════════════ */

.srv-section-personalization {
  padding: 4rem 0;
  background-color: transparent;
}

@media (min-width: 1024px) {
  .srv-section-personalization {
    padding: 5rem 0;
  }
}

.srv-personalization-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 1023px) {
  .srv-personalization-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Imagen */
.srv-personalization-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.srv-personalization-image picture {
  display: block;
}

.srv-personalization-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Contenido */
.srv-personalization-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


.srv-personalization-intro {
  font-size: 1.025rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Posibilidades */
.srv-personalization-options {
  padding: 1.5rem;
  background: #f8fffe;
  border-radius: 14px;
  border: 1px solid #e0f0ee;
}

.srv-options-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #42ADA5;
  margin: 0 0 1rem;
}

.srv-options-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.srv-options-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.4;
}

.srv-options-list svg {
  width: 18px;
  height: 18px;
  color: #42ADA5;
  flex-shrink: 0;
}

/* Nota de seguridad */
.srv-personalization-note {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #E8F5F3 0%, #F3F8F7 100%);
  border-left: 4px solid #42ADA5;
  border-radius: 12px;
}

.srv-personalization-note svg {
  width: 20px;
  height: 20px;
  color: #42ADA5;
  flex-shrink: 0;
  margin-top: 2px;
}

.srv-personalization-note p {
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

/* CTA */
.srv-personalization-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background-color: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
  width: fit-content;
}

.srv-personalization-cta:hover {
  background-color: #1da851;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.3);
}

.srv-personalization-cta:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 3px;
}

.srv-personalization-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .srv-personalization-container {
    gap: 1.5rem;
  }

  .srv-personalization-intro {
    font-size: 0.95rem;
  }

  .srv-options-list {
    grid-template-columns: 1fr;
  }

  .srv-personalization-options {
    padding: 1.25rem;
  }

  .srv-personalization-cta {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN COLORES INTERACTIVA
   Imagen dinámica + Selector de colores
═══════════════════════════════════════════════════ */

.srv-section-colors-interactive {
  padding: 4rem 0;
  background-color: transparent;
}

@media (min-width: 1024px) {
  .srv-section-colors-interactive {
    padding: 5rem 0;
  }
}

.srv-colors-interactive-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

.srv-colors-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .srv-colors-header {
    margin-bottom: 4rem;
  }
}

.srv-colors-header h2 {
  margin-bottom: 1rem;
}

.srv-colors-intro {
  font-size: 1.025rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Wrapper 2-columnas */
.srv-colors-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

@media (max-width: 1023px) {
  .srv-colors-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Invertir orden: colores izquierda, imagen derecha */
.srv-colors-selector {
  order: -1;
}

@media (max-width: 1023px) {
  .srv-colors-selector {
    order: 0;
  }
}

/* Preview de imagen (izquierda) */
.srv-colors-preview {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.srv-colors-preview picture {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.srv-color-preview-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: opacity 0.3s ease;
}

.srv-color-preview-info {
  text-align: center;
}

#colorPreviewName {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f2422;
  margin: 0 0 0.5rem;
}

.srv-color-preview-availability {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

/* Selector de colores (derecha) */
.srv-colors-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

@media (max-width: 1023px) {
  .srv-colors-selector {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.65rem;
  }
}

@media (max-width: 768px) {
  .srv-colors-selector {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
  }
}

@media (max-width: 640px) {
  .srv-colors-selector {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}

/* Botón de color */
.srv-color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem;
  background: #f8fffe;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.srv-color-option:hover {
  border-color: #42ADA5;
  background: #f0fbfa;
}

.srv-color-option.active {
  border-color: #42ADA5;
  background: #e8f8f7;
  box-shadow: 0 4px 12px rgba(66, 173, 165, 0.2);
}

/* Swatch dentro del botón */
.srv-color-option .srv-color-swatch {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.srv-color-option:hover .srv-color-swatch {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.srv-color-option.active .srv-color-swatch {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(66, 173, 165, 0.3);
}

/* Nombre del color en el botón */
.srv-color-option-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: #0f2422;
  line-height: 1.2;
}

/* CTA principal */
.srv-colors-cta-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.srv-color-consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background-color: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.srv-color-consult-btn:hover {
  background-color: #1da851;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.3);
}

.srv-color-consult-btn:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 3px;
}

.srv-color-consult-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Footer con nota */
.srv-colors-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.srv-colors-footer p {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 640px) {
  .srv-colors-wrapper {
    gap: 1.5rem;
  }

  .srv-colors-header {
    margin-bottom: 2rem;
  }

  .srv-colors-intro {
    font-size: 0.95rem;
  }

  #colorPreviewName {
    font-size: 1.25rem;
  }

  .srv-color-option-name {
    font-size: 0.8rem;
  }

  .srv-color-consult-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN BENEFICIOS — CARDS
═══════════════════════════════════════════════════ */

.srv-section-benefits {
  padding: 4rem 0;
  background-color: #f4faf9;
}

@media (min-width: 1024px) {
  .srv-section-benefits {
    padding: 5rem 0;
  }
}

.srv-benefits-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.srv-benefits-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .srv-benefits-header {
    margin-bottom: 4rem;
  }
}

.srv-benefits-header h2 {
  margin-bottom: 1rem;
}

.srv-benefits-intro {
  font-size: 1.025rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Grid de cards */
.srv-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

@media (min-width: 1024px) {
  .srv-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .srv-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Card individual */
.srv-benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.srv-benefit-card:hover {
  border-color: #42ADA5;
  box-shadow: 0 8px 24px rgba(66, 173, 165, 0.12);
  transform: translateY(-4px);
}

/* Icono */
.srv-benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f8f7;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.srv-benefit-icon svg {
  width: 32px;
  height: 32px;
  color: #42ADA5;
  stroke-width: 2;
}

/* Título */
.srv-benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f2422;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

/* Texto */
.srv-benefit-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive ──────────────────────────────– */
@media (max-width: 768px) {
  .srv-benefit-card {
    padding: 1.5rem 1.25rem;
  }

  .srv-benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .srv-benefit-icon svg {
    width: 28px;
    height: 28px;
  }

  .srv-benefit-title {
    font-size: 1rem;
  }

  .srv-benefit-text {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .srv-benefit-card:hover {
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN CASOS DE USO
═══════════════════════════════════════════════════ */

.srv-section-usecases {
  padding: 4rem 0;
  background-color: transparent;
}

@media (min-width: 1024px) {
  .srv-section-usecases {
    padding: 5rem 0;
  }
}

.srv-usecases-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.srv-usecases-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .srv-usecases-header {
    margin-bottom: 4rem;
  }
}

.srv-usecases-header h2 {
  margin-bottom: 0;
}

/* Grid de casos de uso */
.srv-usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

@media (min-width: 1024px) {
  .srv-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1440px) {
  .srv-usecases-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Card individual */
.srv-usecase-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.srv-usecase-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Imagen */
.srv-usecase-image {
  width: 100%;
  overflow: hidden;
  background: #f0f0f0;
  flex-shrink: 0;
}

.srv-usecase-image picture {
  display: block;
}

.srv-usecase-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.srv-usecase-card:hover .srv-usecase-image img {
  transform: scale(1.06);
}

/* Contenido */
.srv-usecase-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Título */
.srv-usecase-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f2422;
  margin: 0;
  line-height: 1.3;
}

/* Descripción */
.srv-usecase-description {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive ──────────────────────────────– */
@media (max-width: 768px) {
  .srv-usecases-header {
    margin-bottom: 2rem;
  }

  .srv-usecase-content {
    padding: 1.5rem 1.25rem;
  }

  .srv-usecase-title {
    font-size: 1rem;
  }

  .srv-usecase-description {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .srv-usecase-card:hover {
    transform: none !important;
    transition: none !important;
  }
  .srv-usecase-card:hover .srv-usecase-image img {
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN MAYOREO
═══════════════════════════════════════════════════ */

.srv-section-wholesale {
  padding: 4rem 0;
  background-color: #f4faf9;
}

@media (min-width: 1024px) {
  .srv-section-wholesale {
    padding: 5rem 0;
  }
}

.srv-wholesale-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.srv-wholesale-header {
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .srv-wholesale-header {
    margin-bottom: 4rem;
  }
}

.srv-wholesale-header h2 {
  margin-bottom: 1rem;
}

.srv-wholesale-intro {
  font-size: 1.025rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Contenido principal */
.srv-wholesale-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Beneficios */
.srv-wholesale-benefits {
  background: #f8fffe;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 2rem;
}

@media (min-width: 1024px) {
  .srv-wholesale-benefits {
    padding: 2.5rem;
  }
}

.srv-wholesale-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f2422;
  margin: 0 0 1.5rem;
  line-height: 1.3;
}

/* Lista de beneficios */
.srv-wholesale-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .srv-wholesale-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.srv-wholesale-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #0f2422;
  font-weight: 500;
  line-height: 1.5;
}

.srv-wholesale-list svg {
  width: 20px;
  height: 20px;
  color: #42ADA5;
  flex-shrink: 0;
}

/* CTA Box */
.srv-wholesale-cta-box {
  display: flex;
  justify-content: center;
}

.srv-wholesale-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background-color: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.srv-wholesale-cta:hover {
  background-color: #1da851;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.3);
}

.srv-wholesale-cta:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 3px;
}

.srv-wholesale-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────– */
@media (max-width: 768px) {
  .srv-wholesale-header {
    margin-bottom: 2rem;
  }

  .srv-wholesale-benefits {
    padding: 1.5rem 1.25rem;
  }

  .srv-wholesale-subtitle {
    font-size: 1rem;
  }

  .srv-wholesale-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .srv-wholesale-cta:hover {
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN GUÍA DE COTIZACIÓN INTERACTIVA
   Wizard: Lista de pasos + Panel actual
═══════════════════════════════════════════════════ */

.srv-section-quotation-guide {
  padding: 4rem 0;
  background-color: #f4faf9;
}

@media (min-width: 1024px) {
  .srv-section-quotation-guide {
    padding: 5rem 0;
  }
}

.srv-quotation-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.srv-quotation-header {
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .srv-quotation-header {
    margin-bottom: 4rem;
  }
}

.srv-quotation-header h2 {
  margin-bottom: 0.75rem;
}

.srv-quotation-subtitle {
  font-size: 1rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

/* Wizard 2-columnas */
.srv-quotation-wizard {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

@media (max-width: 1023px) {
  .srv-quotation-wizard {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Columna derecha */
.srv-quotation-right-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Lista de pasos (izquierda) */
.srv-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.srv-step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #475569;
  text-align: left;
}

.srv-step-item:hover {
  border-color: #42ADA5;
  background: #f8fffe;
}

.srv-step-item.active {
  background: #e8f8f7;
  border-color: #42ADA5;
  color: #0f2422;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(66, 173, 165, 0.15);
}

.srv-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #42ADA5;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.srv-step-item.active .srv-step-number {
  background-color: #42ADA5;
  box-shadow: 0 0 0 3px rgba(66, 173, 165, 0.2);
}

/* Botones de navegación */
.srv-quotation-navigation {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.srv-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #42ADA5;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.srv-nav-btn:hover:not(:disabled) {
  background-color: #34928b;
  transform: translateY(-2px);
}

.srv-nav-btn:disabled {
  background-color: #ccc;
  color: #888;
  cursor: not-allowed;
  opacity: 0.5;
}

.srv-nav-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.srv-nav-btn--prev {
  flex-direction: row-reverse;
}

/* Resumen pequeño (arriba del panel) */
.srv-quotation-summary-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8fffe;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
  .srv-quotation-summary-top {
    grid-template-columns: 1fr;
  }
}

.srv-summary-item-small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.srv-summary-label-small {
  font-weight: 600;
  color: #475569;
  flex-shrink: 0;
}

.srv-summary-value-small {
  font-weight: 600;
  color: #42ADA5;
  text-align: right;
  word-break: break-word;
  max-width: 150px;
}

/* Panel actual (derecha) */
.srv-quotation-form {
  display: flex;
  flex-direction: column;
}

.srv-step-panel {
  display: none;
  opacity: 0;
  animation: panelSlideIn 0.4s ease-out forwards;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 2.5rem;
}

.srv-step-panel.active {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@keyframes panelSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Título y descripción del panel */
.srv-panel-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f2422;
  margin: 0;
  line-height: 1.3;
}

.srv-panel-description {
  font-size: 1rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* Inputs */
.srv-panel-input,
.srv-panel-select {
  padding: 0.875rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #0f2422;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.srv-panel-input:focus,
.srv-panel-select:focus {
  outline: none;
  border-color: #42ADA5;
  box-shadow: 0 0 0 3px rgba(66, 173, 165, 0.1);
}

.srv-panel-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Grid de colores en cotización */
.srv-quotation-colors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .srv-quotation-colors {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }
}

@media (max-width: 640px) {
  .srv-quotation-colors {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}

/* Botón de color en cotización */
.srv-quotation-color-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem;
  background: #f8fffe;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.srv-quotation-color-btn:hover {
  border-color: #42ADA5;
  background: #f0fbfa;
}

.srv-quotation-color-btn.active {
  border-color: #42ADA5;
  background: #e8f8f7;
  box-shadow: 0 4px 12px rgba(66, 173, 165, 0.2);
}

/* Swatch dentro del botón de color */
.srv-quot-color-swatch {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.srv-quotation-color-btn:hover .srv-quot-color-swatch {
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.srv-quotation-color-btn.active .srv-quot-color-swatch {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(66, 173, 165, 0.3);
}

/* Label del color */
.srv-quot-color-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #0f2422;
  line-height: 1.2;
}

/* Footer - CTA */
.srv-quotation-footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.srv-preview-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f2422;
  margin: 0;
}

.srv-preview-message {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  min-height: 100px;
  word-break: break-word;
  font-family: 'Poppins', sans-serif;
}

/* CTA */
.srv-quotation-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
  width: 100%;
}

.srv-quotation-cta:hover {
  background-color: #1da851;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.3);
}

.srv-quotation-cta:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 3px;
}

.srv-quotation-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────– */
@media (max-width: 768px) {
  .srv-step-panel {
    padding: 1.75rem 1.5rem;
  }

  .srv-panel-title {
    font-size: 1.1rem;
  }

  .srv-panel-description {
    font-size: 0.95rem;
  }

  .srv-preview-box {
    padding: 1.5rem 1.25rem;
  }

  .srv-preview-message {
    padding: 1.25rem;
    font-size: 0.9rem;
  }

  .srv-quotation-cta {
    font-size: 0.9rem;
    padding: 0.9rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .srv-step-panel {
    animation: none !important;
  }
  .srv-step-item:hover,
  .srv-step-item.active {
    transition: none !important;
  }
  .srv-quotation-cta:hover {
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN CARACTERÍSTICAS TÉCNICAS
═══════════════════════════════════════════════════ */

.srv-section-specs {
  padding: 4rem 0;
  background-color: transparent;
}

@media (min-width: 1024px) {
  .srv-section-specs {
    padding: 5rem 0;
  }
}

.srv-specs-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.srv-specs-header {
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .srv-specs-header {
    margin-bottom: 4rem;
  }
}

.srv-specs-header h2 {
  margin-bottom: 0;
}

/* Contenido */
.srv-specs-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.srv-specs-intro {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.025rem;
  color: #475569;
  line-height: 1.65;
  text-align: center;
}

/* Grid de especificaciones */
.srv-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

@media (min-width: 1024px) {
  .srv-specs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .srv-specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Item de especificación */
.srv-spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fffe;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.srv-spec-item:hover {
  border-color: #42ADA5;
  box-shadow: 0 6px 20px rgba(66, 173, 165, 0.12);
  transform: translateY(-2px);
}

/* Icono */
.srv-spec-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f8f7;
  border-radius: 10px;
  flex-shrink: 0;
}

.srv-spec-icon svg {
  width: 28px;
  height: 28px;
  color: #42ADA5;
}

/* Nombre de especificación */
.srv-spec-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f2422;
  margin: 0;
  line-height: 1.3;
}

/* Nota */
.srv-specs-note {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 1.75rem;
  background: #f8fffe;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  border-left: 4px solid #42ADA5;
}

.srv-specs-note p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .srv-specs-header {
    margin-bottom: 2rem;
  }

  .srv-spec-item {
    padding: 1.25rem 1rem;
  }

  .srv-spec-icon {
    width: 40px;
    height: 40px;
  }

  .srv-spec-icon svg {
    width: 24px;
    height: 24px;
  }

  .srv-spec-name {
    font-size: 0.9rem;
  }

  .srv-specs-note {
    padding: 1.5rem 1.25rem;
  }

  .srv-specs-note p {
    font-size: 0.95rem;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN IDEAS DE PRESENTACIÓN
═══════════════════════════════════════════════════ */

.srv-section-ideas {
  padding: 4rem 0;
  background-color: transparent;
}

@media (min-width: 1024px) {
  .srv-section-ideas {
    padding: 5rem 0;
  }
}

.srv-ideas-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.srv-ideas-header {
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .srv-ideas-header {
    margin-bottom: 4rem;
  }
}

.srv-ideas-header h2 {
  margin-bottom: 0;
}

/* Grid de ideas */
.srv-ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .srv-ideas-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .srv-ideas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Card de idea — Flip card container */
.srv-idea-card {
  perspective: 1000px;
  aspect-ratio: 1;
  min-width: 280px;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}

/* Inner container para animación 3D */
.srv-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
}

.srv-flip-card.flipped .srv-flip-card-inner {
  transform: rotateY(180deg);
}

/* Frente (imagen + título overlay) */
.srv-flip-card-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: #ffffff;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.srv-flip-card-front picture {
  display: flex;
  width: 100%;
  height: 100%;
  flex: 1;
}

.srv-flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.srv-flip-card.flipped .srv-flip-card-front img {
  transform: scale(1.05);
}

/* Título overlay en el frente */
.srv-flip-card-front .srv-idea-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #ffffff;
  padding: 1rem 1.25rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

/* Reverso (contenido) */
.srv-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.75rem;
  text-align: center;
  box-sizing: border-box;
}

/* Título en el reverso */
.srv-flip-card-back .srv-idea-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f2422;
  margin: 0 0 1rem;
  line-height: 1.3;
}

/* Texto de idea */
.srv-idea-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Hint badge de flip */
.srv-flip-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(66, 173, 165, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #42ADA5;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  z-index: 10;
  animation: flipHintFade 3s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(66, 173, 165, 0.12);
}

@keyframes flipHintFade {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* CTA al blog */
.srv-ideas-cta {
  display: flex;
  justify-content: center;
}

.srv-ideas-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background-color: #42ADA5;
  color: #ffffff;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(66, 173, 165, 0.25);
}

.srv-ideas-link:hover {
  background-color: #34928b;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(66, 173, 165, 0.3);
}

.srv-ideas-link:focus-visible {
  outline: 2px solid #42ADA5;
  outline-offset: 3px;
}

.srv-ideas-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .srv-ideas-header {
    margin-bottom: 2rem;
  }

  .srv-idea-card {
    height: 350px;
  }

  .srv-flip-card-back {
    padding: 1.25rem;
  }

  .srv-idea-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .srv-idea-text {
    font-size: 0.9rem;
  }

  .srv-ideas-link {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .srv-flip-card-inner {
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN CTA FINAL — COTIZA AHORA
═══════════════════════════════════════════════════ */

.srv-section-final-cta {
  padding: 4rem 0;
  background-color: transparent;
}

@media (min-width: 1024px) {
  .srv-section-final-cta {
    padding: 5rem 0;
  }
}

.srv-final-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.srv-final-cta-content {
  text-align: center;
}

.srv-final-cta-content h2 {
  margin-bottom: 1.5rem;
}

.srv-final-cta-copy {
  font-size: 1.025rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 2rem;
}

.srv-final-cta-button-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.srv-final-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.25rem;
  background-color: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.srv-final-cta-button:hover {
  background-color: #1da851;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.3);
}

.srv-final-cta-button:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 3px;
}

.srv-final-cta-button svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.srv-final-cta-microcopy {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .srv-final-cta-copy {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .srv-final-cta-button {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .srv-final-cta-button:hover {
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN ¿CÓMO COMPRAR? — 4 PASOS DE COMPRA
═══════════════════════════════════════════════════ */

.srv-section-how-to-buy {
  padding: 4rem 0;
  background-color: transparent;
}

@media (min-width: 1024px) {
  .srv-section-how-to-buy {
    padding: 5rem 0;
  }
}

.srv-how-to-buy-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.srv-how-to-buy-header {
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .srv-how-to-buy-header {
    margin-bottom: 4rem;
  }
}

.srv-how-to-buy-intro {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de pasos */
.srv-how-to-buy-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .srv-how-to-buy-steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .srv-how-to-buy-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Card de paso */
.srv-how-to-buy-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
}

@media (min-width: 1024px) {
  .srv-how-to-buy-step {
    padding: 2.5rem 1.75rem;
  }
}

.srv-how-to-buy-step:hover {
  border-color: #42ADA5;
  box-shadow: 0 8px 24px rgba(66, 173, 165, 0.12);
  transform: translateY(-4px);
}

/* Número del paso */
.srv-how-to-buy-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #42ADA5 0%, #34928b 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(66, 173, 165, 0.25);
}

/* Título del paso */
.srv-how-to-buy-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f2422;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

/* Descripción del paso */
.srv-how-to-buy-step-description {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Línea conectora (opcional visual en desktop) */
@media (min-width: 1024px) {
  .srv-how-to-buy-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 100%;
    right: -100%;
    height: 2px;
    background: linear-gradient(90deg, #42ADA5 0%, rgba(66, 173, 165, 0) 100%);
    width: calc(100% - 30px);
  }
}

/* CTA */
.srv-how-to-buy-cta {
  display: flex;
  justify-content: center;
}

.srv-how-to-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.srv-how-to-buy-btn:hover {
  background-color: #1da851;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.3);
}

.srv-how-to-buy-btn:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 3px;
}

.srv-how-to-buy-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .srv-how-to-buy-header {
    margin-bottom: 2rem;
  }

  .srv-how-to-buy-header h2 {
    margin-bottom: 0.75rem;
  }

  .srv-how-to-buy-intro {
    font-size: 0.95rem;
  }

  .srv-how-to-buy-step {
    padding: 1.75rem 1.25rem;
  }

  .srv-how-to-buy-step-number {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .srv-how-to-buy-step-title {
    font-size: 1rem;
  }

  .srv-how-to-buy-step-description {
    font-size: 0.9rem;
  }

  .srv-how-to-buy-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .srv-how-to-buy-step:hover {
    transform: none !important;
    transition: none !important;
  }
  .srv-how-to-buy-btn:hover {
    transform: none !important;
    transition: none !important;
  }
}

/* Responsive borders para how-to-buy */
.how-to-buy-center {
  border-left: none !important;
  border-right: none !important;
}

@media (min-width: 768px) {
  .how-to-buy-center {
    border-left: 1px solid #e5e7eb !important;
    border-right: 1px solid #e5e7eb !important;
  }
}

/* Ajustes responsive para how-to-buy en móvil */
@media (max-width: 767px) {
  .how-to-buy .icon-box4 {
    padding: 0.5rem;
  }

  .how-to-buy .icon-box4 .content {
    padding: 0.5rem;
  }

  .how-to-buy .icon-box4 p {
    font-size: 0.75rem;
    line-height: 1.2;
    margin: 0;
  }

  .how-to-buy .icon-box4 i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .how-to-buy .col {
    padding: 0.25rem;
  }
}

/* Ajustes para sección de ratings en móvil */
@media (max-width: 767px) {
  .info-web .lav-uso3-h2 {
    margin-bottom: 0.5rem;
  }

  .info-web .row.text-center {
    margin-bottom: 1rem;
  }

  .gbg-ratings-container {
    width: 100%;
  }
}

/* Reducir padding en móvil para section-padding */
@media (max-width: 767px) {
  .section-padding {
    padding-top: 80px !important;
  }
}

/* Reducir espaciado entre comentarios e iconos en móvil */
@media (max-width: 767px) {
  .info-web .container.pt-3 {
    padding-top: 0.5rem !important;
  }
}

/* Convertir grid a carrusel responsive */
@media (max-width: 1439px) {
  .srv-usecases-container {
    position: relative;
  }

  .srv-usecases-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 3rem;
    scrollbar-width: none;
  }

  .srv-usecases-grid::-webkit-scrollbar {
    display: none;
  }

  .srv-usecase-card {
    flex: 0 0 calc(100% - 1rem);
    min-width: 0;
    scroll-snap-align: start;
  }

  /* Móvil: 1 tarjeta */
  @media (max-width: 575px) {
    .srv-usecase-card {
      flex: 0 0 calc(100% - 1rem);
    }
  }

  /* Tablets pequeñas: 1.5 tarjetas */
  @media (min-width: 576px) and (max-width: 767px) {
    .srv-usecase-card {
      flex: 0 0 calc(50% - 0.5rem);
    }
  }

  /* Tablets medianas: 2 tarjetas */
  @media (min-width: 768px) and (max-width: 1023px) {
    .srv-usecase-card {
      flex: 0 0 calc(50% - 0.5rem);
    }
  }

  /* Tablets grandes: 3 tarjetas */
  @media (min-width: 1024px) and (max-width: 1439px) {
    .srv-usecase-card {
      flex: 0 0 calc(33.333% - 0.67rem);
    }
  }

  /* Botones de navegación */
  .srv-usecases-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: #42ADA5;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease;
  }

  .srv-usecases-nav-btn:hover {
    background: #2d8b82;
  }

  .srv-usecases-nav-btn--prev {
    left: 0;
  }

  .srv-usecases-nav-btn--next {
    right: 0;
  }

  /* Puntos de navegación */
  .srv-usecases-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    padding: 0;
    list-style: none;
  }

  .srv-usecases-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .srv-usecases-dot.active {
    background: #42ADA5;
  }
}


/* Restaurar grid normal en desktop (1440px+) */
@media (min-width: 1440px) {
  .srv-usecases-container {
    position: static;
  }

  .srv-usecases-grid {
    display: grid !important;
    overflow-x: visible !important;
    gap: 2rem;
    padding-bottom: 0 !important;
    scroll-snap-type: none !important;
    grid-template-columns: repeat(4, 1fr);
  }

  .srv-usecase-card {
    flex: none !important;
    scroll-snap-align: none !important;
  }

  .srv-usecases-nav-btn {
    display: none !important;
  }

  .srv-usecases-dots {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   TÍTULOS DE SECCIÓN — Centrado en desktop
═══════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .info-web .lav-uso3-h2 {
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════
   BREADCRUMB — Rediseño (fase 1: migas/título/descripción)
   Elemento: .product-breadcrumb-section (contenedor) + .gbg-breadcrumb internos
═══════════════════════════════════════════════════ */
.product-breadcrumb-section {
  padding-top: 1rem;
  padding-bottom: 0.25rem;
}

.product-breadcrumb-section .gbg-breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.product-breadcrumb-section .gbg-breadcrumb__container {
  padding: 0 1.5rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .product-breadcrumb-section .gbg-breadcrumb__container {
    padding: 0 2rem;
  }
}

.product-breadcrumb-section .gbg-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transition: color 0.2s ease;
  text-decoration: none;
}

.product-breadcrumb-section .gbg-breadcrumb__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #6EABA5;
}

.product-breadcrumb-section .gbg-breadcrumb__link:hover {
  color: #374151;
  background: transparent;
  text-decoration: underline;
}

.product-breadcrumb-section .gbg-breadcrumb__item--active .gbg-breadcrumb__link {
  color: #6EABA5;
  font-weight: 600;
  background: transparent;
}

.product-breadcrumb-section .gbg-breadcrumb__separator {
  color: #d1d5db;
}

.product-breadcrumb-section .gbg-breadcrumb__separator svg {
  width: 12px;
  height: 12px;
}

/* ═══════════════════════════════════════════════════
   TÍTULO H1 — Producto (rediseño)
   Elemento: .product-h1 dentro de .info-web (columna derecha)
═══════════════════════════════════════════════════ */
.product-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem !important;
  font-weight: 700 !important;
  color: #0f2422;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .product-h1 {
    font-size: 1.6rem !important;
    margin-bottom: 0.4rem;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN DE PRODUCTO — reduce padding-top heredado
   Elemento: .section.section-padding (galería + info)
═══════════════════════════════════════════════════ */
.section.section-padding {
  padding-top: 24px;
}

/* ═══════════════════════════════════════════════════
   DESCRIPCIÓN CORTA — debajo del H1
   Elemento: .product-short-description dentro de .info-web (columna derecha)
═══════════════════════════════════════════════════ */
.product-short-description {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

@media (max-width: 640px) {
  .product-short-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
}

/* ═══════════════════════════════════════════════════
   RATING/COMENTARIOS — fila de estrellas + calificación + reseñas
   Elemento: .product-rating-row (estrellas + número + conteo)
═══════════════════════════════════════════════════ */
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.product-rating-row .gbg-stars {
  display: flex;
  gap: 0.2rem;
}

.product-rating-row .gbg-star {
  font-size: 1.3rem;
  color: #FFC107;
}

.product-rating-number {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #42ADA5;
}

.product-rating-count {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b7280;
}

/* ═══════════════════════════════════════════════════
   PRECIO — precio principal + precio por pieza
   Elemento: .product-price-block (debajo del rating, arriba de badges)
═══════════════════════════════════════════════════ */
.product-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.product-price-main {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #42ADA5;
  line-height: 1.2;
}

.product-price-unit {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.4;
}

.product-price-unit strong {
  font-weight: 700;
  color: #42ADA5;
  font-size: 1.25rem;
}

/* ═══════════════════════════════════════════════════
   TRUST BADGES — Compra segura / Facturamos / Envío
   Elemento: .product-trust-badges (tres badges horizontales)
═══════════════════════════════════════════════════ */
.product-trust-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: nowrap;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1;
}

.trust-badge-icon {
  width: 28px;
  height: 28px;
  color: #42ADA5;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-badge-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f2422;
  line-height: 1.2;
  white-space: nowrap;
}

.trust-badge-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .product-trust-badges {
    gap: 1rem;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .trust-badge {
    min-width: auto;
  }
}

/* ═══════════════════════════════════════════════════
   CARRUSEL DE FOTOS — esquinas redondeadas + sin flechas
   Elemento: .product-gallery-slider, .product-zoom, .product-thumb-slider
═══════════════════════════════════════════════════ */
.product-gallery-slider .product-zoom img {
  border-radius: 20px !important;
}

.product-gallery-slider .slick-arrow {
  display: none !important;
}

.product-thumb-slider .item img {
  border-radius: 12px !important;
}

.product-thumb-slider {
  position: relative !important;
  overflow: visible !important;
}

.product-thumb-slider .slick-arrow {
  display: block !important;
  position: absolute !important;
  width: 28px !important;
  height: 28px !important;
  font-size: 16px !important;
  line-height: 28px !important;
  background-color: transparent !important;
  border: none !important;
  color: #42ADA5 !important;
  opacity: 1 !important;
  visibility: visible !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  padding: 0 !important;
  z-index: 10 !important;
  cursor: pointer !important;
  margin: 0 !important;
}

.product-thumb-slider .slick-prev {
  left: 8px !important;
}

.product-thumb-slider .slick-next {
  right: 8px !important;
}

.product-thumb-slider .slick-arrow:hover {
  color: #3a9a8f !important;
  font-weight: bold !important;
}

/* ═══════════════════════════════════════════════════
   MARKETPLACES — Mercado Libre / TikTok Shop
   Elemento: .marketplace-section (fila horizontal)
═══════════════════════════════════════════════════ */
.marketplace-section {
  padding: 1.75rem 1.5rem;
  background-color: #f0f9f8;
  margin: 2.5rem auto;
  border-radius: 12px;
  width: 95%;
  max-width: 1200px;
}

.marketplace-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.marketplace-main {
  display: contents;
}

.marketplace-icon-main {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 8px;
  background-color: #42ADA5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marketplace-icon-main svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.marketplace-info {
  flex: 0 0 auto;
}

.marketplace-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f2422;
  margin: 0 0 0.25rem 0;
}

.marketplace-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 400;
  margin: 0;
}

.marketplace-cards {
  display: flex;
  gap: 1rem;
  margin-left: auto;
  flex-wrap: nowrap;
}

.marketplace-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  flex: 0 0 auto;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.marketplace-card:hover {
  border-color: #42ADA5;
  box-shadow: 0 2px 8px rgba(66, 173, 165, 0.1);
}

.marketplace-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}

.marketplace-name strong {
  display: block;
  color: #0f2422;
  font-weight: 600;
  font-size: 0.85rem;
}

.marketplace-link {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;
  margin-left: 0.5rem;
}

.marketplace-link svg {
  width: 14px;
  height: 14px;
  color: #42ADA5;
}

.marketplace-link:hover svg {
  color: #3a9a8f;
}

@media (max-width: 768px) {
  .marketplace-container {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .marketplace-cards {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .marketplace-card {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 150px;
    white-space: normal;
  }

  .marketplace-title {
    font-size: 0.95rem;
  }

  .marketplace-subtitle {
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .marketplace-section {
    width: 98%;
    padding: 1.25rem 1rem;
  }

  .marketplace-icon-main {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .marketplace-icon-main svg {
    width: 28px;
    height: 28px;
  }

  .marketplace-title {
    font-size: 0.85rem;
  }

  .marketplace-subtitle {
    font-size: 0.75rem;
  }

  .marketplace-card {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }

  .marketplace-name {
    font-size: 0.7rem;
  }

  .marketplace-name strong {
    font-size: 0.75rem;
  }

  .marketplace-link {
    width: 20px;
    height: 20px;
  }

  .marketplace-link svg {
    width: 12px;
    height: 12px;
  }
}

/* ═══════════════════════════════════════════════════
   DIVISOR — línea sutil entre trust badges y widget nuevo
   Elemento: .new-pkg-divider
═══════════════════════════════════════════════════ */
.new-pkg-divider {
  height: 2px;
  background-color: #d1d5db;
  margin: 2rem 0;
}

/* ═══════════════════════════════════════════════════
   WIDGET NUEVO — Selección de paquete + cantidad + CTA (prueba)
   Elemento: .new-package-widget (cards de paquete + stepper + botón WhatsApp)
═══════════════════════════════════════════════════ */
.new-package-widget {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.new-pkg-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f2422;
  text-transform: none;
}

.new-pkg-cards {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  margin-bottom: 1.5rem;
}

.new-pkg-card {
  flex: 0 0 auto;
  min-width: 100px;
  padding: 1rem 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.new-pkg-card:hover {
  border-color: #42ADA5;
}

.new-pkg-card--selected {
  border-color: #42ADA5;
  background: #f0faf9;
}

.new-pkg-qty {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f2422;
  margin-bottom: 0.4rem;
}

.new-pkg-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #42ADA5;
  margin-bottom: 0.2rem;
}

.new-pkg-unit {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: #6b7280;
  font-weight: 400;
}

.new-pkg-check {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #42ADA5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.25s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.new-pkg-card--selected .new-pkg-check {
  opacity: 1;
}

.new-pkg-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .new-pkg-row {
    gap: 0.5rem;
    align-items: center;
  }

  .new-pkg-wa-btn {
    padding: 0.75rem 1rem !important;
    font-size: 0.75rem !important;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .new-pkg-row .new-pkg-wa-btn {
    flex: 1;
  }
}

.new-pkg-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.new-pkg-stepper-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f2422;
  min-width: 60px;
}

.new-pkg-stepper-controls {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  flex: 0 0 auto;
}

.new-pkg-stepper-btn {
  width: 30px;
  height: 36px;
  border: none;
  background: #f9fafb;
  color: #42ADA5;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.new-pkg-stepper-btn:hover {
  background: #f3f4f6;
}

.new-pkg-stepper-input {
  width: 50px !important;
  height: 36px;
  border: none;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f2422;
}

.new-pkg-stepper-input:focus {
  outline: none;
  background: #f9fafb;
}

.new-pkg-wa-btn {
  padding: 1rem 1.5rem;
  background: #42ADA5;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-sizing: border-box;
  white-space: nowrap;
}

.new-pkg-row .new-pkg-wa-btn {
  flex: 1;
  width: 100%;
}

.new-pkg-widget > .new-pkg-wa-btn {
  width: 100%;
}

.new-pkg-wa-btn:hover {
  background: #3a9a8f;
}

.new-pkg-wa-btn i {
  font-size: 1.2rem;
}

.new-pkg-wa-btn--outline {
  background: transparent;
  color: #42ADA5;
  border: 2px solid #42ADA5;
}

.new-pkg-wa-btn--outline:hover {
  background: #f0faf9;
  border-color: #3a9a8f;
  color: #3a9a8f;
}

.new-pkg-footer {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  align-items: center;
  flex-wrap: wrap;
}

.new-pkg-stock {
  font-size: 0.85rem;
  font-weight: 600;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.new-pkg-shipping {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 400;
  margin-left: auto;
}

@media (max-width: 640px) {
  .new-pkg-stock {
    justify-content: flex-start;
  }

  .new-pkg-shipping {
    margin-left: 0;
  }

  .new-pkg-cards {
    gap: 0.5rem;
  }

  .new-pkg-card {
    min-width: 85px;
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
  }

  .new-pkg-stepper {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════
   SECCIÓN CARACTERÍSTICAS — Card tipo nota
═══════════════════════════════════════════════════ */
.features-band {
  padding: 1.5rem 0 0.75rem 0;
}

.features-band__container {
  padding: 2rem;
  background-color: #ffffff;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 95%;
  max-width: 1200px;
}

@media (max-width: 1023px) {
  .features-band__container {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .features-band__container {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .features-band__container {
    gap: 0.75rem;
    padding: 1.25rem;
  }
}

.features-band__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 150px;
}

@media (max-width: 768px) {
  .features-band__item {
    flex: 0 1 calc(50% - 0.5rem);
  }
}

@media (max-width: 640px) {
  .features-band__item {
    flex: 1 1 100%;
  }
}

.features-band__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d4e8e5;
  border-radius: 10px;
  flex-shrink: 0;
}

.features-band__icon i {
  font-size: 1.3rem;
  color: #42ADA5;
}

.features-band__content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.features-band__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin: 0;
}

.features-band__text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f2422;
  margin: 0;
  line-height: 1.25;
}

@media (max-width: 640px) {
  .features-band__label {
    font-size: 0.65rem;
  }

  .features-band__text {
    font-size: 0.8rem;
  }

  .features-band__icon {
    width: 38px;
    height: 38px;
  }

  .features-band__icon i {
    font-size: 1.1rem;
  }
}
