/* =============================================
   MASAMU — CSS Premium
   Paleta: #237c80 (verde petróleo) + #ee7432 (naranja)
   ============================================= */

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

:root {
  --primary: #237c80;
  --primary-dark: #1a5c60;
  --primary-light: #e8f5f5;
  --accent: #ee7432;
  --accent-light: #fef3ec;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ea952;
  --white: #FFFFFF;
  --gray-soft: #F7F8F8;
  --gray-border: #E5E7EB;
  --gray-text: #4B5563;
  --black-soft: #111827;
  --cta-bg: #3F3F3D;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.05);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--gray-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ================== UTILITIES ================== */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-py { padding: 80px 0; }
.section-py-sm { padding: 48px 0; }

/* ================== HEADER ================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  height: 70px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.logo img { height: 40px; width: auto; object-fit: contain; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--gray-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-menu a:hover { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(35, 124, 128, 0.3);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black-soft);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hamburger active (X) */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================== HERO ================== */
.hero {
  background: var(--white);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '✦';
  font-size: 0.65rem;
}

.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--black-soft);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #e8f5f5 0%, #d4eaeb 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.hero-image-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--primary);
  opacity: 0.4;
}

/* ================== URGENCY BAR ================== */
.urgency-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 16px 0;
}

.urgency-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.urgency-text {
  color: var(--gray-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', monospace;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--black-soft);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

.countdown-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-sep { color: var(--accent); }

/* ================== BENEFITS ================== */
.benefits { background: var(--gray-soft); }

.section-header { text-align: center; margin-bottom: 56px; }

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--black-soft);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

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

.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 10px;
}

.benefit-text { font-size: 0.9rem; line-height: 1.7; }

/* ================== GALLERY ================== */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-main {
  grid-row: 1 / 3;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease;
  display: block;
}

.gallery-main .gallery-img { height: 460px; }
.gallery-secondary .gallery-img { height: 216px; }

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-item:hover .gallery-img { transform: scale(1.03); }

.gallery-placeholder {
  background: linear-gradient(135deg, #e8f5f5 0%, #d4eaeb 50%, #f0f4f4 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0.5;
}

/* ================== PROCESS ================== */
.process { background: var(--gray-soft); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.process-number {
  width: 52px;
  height: 52px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.process-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 10px;
}

.process-text { font-size: 0.875rem; line-height: 1.7; }

/* ================== SUBSCRIBE ================== */
.subscribe { background: var(--white); }

.subscribe-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.form-input {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--black-soft);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: var(--primary); }
.form-input::placeholder { color: #9CA3AF; }

.form-success {
  display: none;
  background: var(--primary-light);
  color: var(--primary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ================== TESTIMONIALS ================== */
.testimonials { background: var(--gray-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 20px;
  color: var(--gray-text);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--black-soft); }

/* ================== REEL TESTIMONIALS ================== */
.testimonial-card--reel {
  padding: 0;
  overflow: hidden;
  background: #000;
  border: none;
  box-shadow: var(--shadow-md);
}

.reel-wrap {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.reel-wrap:hover .reel-video { transform: scale(1.03); }

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    transparent 30%,
    transparent 55%,
    rgba(0,0,0,0.75) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
}

.reel-top { display: flex; justify-content: flex-end; }

.reel-stars {
  color: #facc15;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.reel-bottom { display: flex; flex-direction: column; gap: 8px; }

.reel-comment {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  font-style: italic;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reel-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-name {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.reel-play-btn:hover { background: rgba(255,255,255,0.32); transform: translate(-50%, -50%) scale(1.1); }
.reel-play-btn.playing { opacity: 0; }
.reel-wrap:hover .reel-play-btn.playing { opacity: 1; }

.reel-mute-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.45);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.reel-mute-btn:hover { background: rgba(0,0,0,0.7); }

/* ================== INSTAGRAM ================== */
.instagram { background: var(--white); }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.instagram-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.instagram-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.instagram-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.instagram-thumb img { width: 100%; height: 100%; object-fit: cover; }

.instagram-info { padding: 16px; }
.instagram-title { font-weight: 600; font-size: 0.9rem; color: var(--black-soft); margin-bottom: 6px; }
.instagram-desc { font-size: 0.8rem; color: var(--gray-text); margin-bottom: 12px; line-height: 1.5; }

/* ================== CTA FINAL ================== */
.cta-final {
  background: var(--cta-bg);
  padding: 100px 0;
  text-align: center;
}

.cta-final .section-title { color: var(--white); }

.cta-final .section-subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

/* ================== FOOTER ================== */
.site-footer {
  background: var(--black-soft);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* ================== WHATSAPP FLOAT ================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }

.whatsapp-pulse {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ================== ALERTS ================== */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.alert-success { background: #d1fae5; color: #065f46; }
.alert-error { background: #fee2e2; color: #991b1b; }
.alert-info { background: var(--primary-light); color: var(--primary-dark); }

/* ================== PRICE DISPLAY ================== */
.price-display { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.price-current { font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.price-original { font-size: 1.1rem; text-decoration: line-through; color: #9CA3AF; }
.price-badge { background: var(--accent); color: white; font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill); }

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

@media (max-width: 768px) {
  .section-py { padding: 56px 0; }

  .nav-menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 20px 24px; border-bottom: 1px solid var(--gray-border); box-shadow: var(--shadow-md); z-index: 99; gap: 20px; }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image, .hero-image-placeholder { height: 280px; }
  .hero { padding: 48px 0 40px; }
  .hero-description { max-width: 100%; }

  .hero-banner-section { min-height: 380px; }
  .hero-banner-content { padding: 60px 0; }

  .urgency-inner { justify-content: center; text-align: center; }

  .benefits-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-main { grid-row: auto; }
  .gallery-main .gallery-img { height: 280px; }
  .gallery-secondary .gallery-img { height: 200px; }
  .instagram-grid { grid-template-columns: 1fr; }

  /* Products — 2 columnas en móvil para aprovechar el espacio */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-card-body { padding: 12px; }
  .product-card-name { font-size: 0.85rem; margin-bottom: 5px; }
  .product-card-desc { font-size: 0.78rem; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .product-card-price { margin-bottom: 8px; gap: 5px; }
  .product-card-price .price-current { font-size: 1rem; }
  .product-card-price .price-badge { font-size: 0.65rem; padding: 3px 7px; }
  .product-card-badge { font-size: 0.62rem; padding: 3px 7px; top: 8px; left: 8px; }
  .product-card-status { font-size: 0.62rem; padding: 3px 7px; top: 8px; right: 8px; }
  .product-card-actions { gap: 5px; }
  .product-card-actions .btn { font-size: 0.7rem; padding: 8px 6px; }

  .mid-banner-content { padding: 40px 0; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.6rem; }
  .btn-lg { padding: 12px 24px; font-size: 0.9rem; }
  .hero-banner-section { min-height: 320px; }

  /* Products — 1 columna en pantallas muy pequeñas */
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card-body { padding: 16px; }
  .product-card-name { font-size: 0.95rem; margin-bottom: 8px; }
  .product-card-desc { font-size: 0.85rem; -webkit-line-clamp: 3; margin-bottom: 12px; }
  .product-card-price { margin-bottom: 12px; }
  .product-card-price .price-current { font-size: 1.2rem; }
  .product-card-price .price-badge { font-size: 0.7rem; padding: 4px 9px; }
  .product-card-badge { font-size: 0.68rem; padding: 4px 9px; }
  .product-card-status { font-size: 0.68rem; padding: 4px 9px; }
  .product-card-actions { gap: 8px; }
  .product-card-actions .btn { font-size: 0.78rem; padding: 10px 12px; }
}

/* ================== SOCIAL FLOATING TABS ================== */
.social-float-tabs {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.social-tab {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  width: 46px;
  height: 46px;
  transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.18);
}

.social-tab:hover {
  width: 150px;
  box-shadow: 3px 3px 14px rgba(0,0,0,0.25);
}

.social-tab-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.social-tab-label {
  white-space: nowrap;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0 12px 0 4px;
  opacity: 0;
  transition: opacity 0.2s 0.1s;
  letter-spacing: 0.02em;
}

.social-tab:hover .social-tab-label { opacity: 1; }

.social-tab--instagram { background: linear-gradient(160deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-tab--facebook  { background: #1877F2; }
.social-tab--tiktok    { background: #010101; }
.social-tab--youtube   { background: #FF0000; }
.social-tab--twitter,
.social-tab--x         { background: #14171A; }
.social-tab--linkedin  { background: #0A66C2; }
.social-tab--pinterest { background: #E60023; }
.social-tab--whatsapp  { background: #25D366; }

/* ================== CHATBOT WIDGET ================== */
.chatbot-wrap {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.chatbot-bubble {
  width: 58px;
  height: 58px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(35,124,128,0.4);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  color: #fff;
  flex-shrink: 0;
}

.chatbot-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(35,124,128,0.5);
}

.chatbot-bubble-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(35,124,128,0.45);
  animation: pulse 2.5s infinite;
}

.chatbot-badge-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.chatbot-window {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  width: 300px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  transform-origin: bottom left;
  animation: chatSlideIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.chatbot-window.open { display: flex; }

@keyframes chatSlideIn {
  from { opacity: 0; transform: scale(0.85) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.chatbot-header {
  background: var(--primary);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-avatar {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.4);
}

.chatbot-agent-info { flex: 1; }

.chatbot-agent-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.chatbot-status {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.chatbot-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.chatbot-close-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
  flex-shrink: 0;
}

.chatbot-close-btn:hover { background: rgba(255,255,255,0.28); }

.chatbot-body {
  padding: 16px;
  background: #f4f6f7;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 240px;
  overflow-y: auto;
}

.chatbot-bubble-msg {
  background: var(--white);
  border-radius: 12px 12px 12px 2px;
  padding: 10px 14px;
  font-size: 0.83rem;
  color: var(--gray-text);
  line-height: 1.55;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chatbot-bubble-msg--options {
  background: transparent;
  box-shadow: none;
  padding: 0;
  gap: 6px;
}

.chatbot-option {
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  width: 100%;
}

.chatbot-option:hover {
  background: var(--primary);
  color: #fff;
}

.chatbot-reply { flex-direction: column; gap: 10px; }

.chatbot-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--gray-border);
  background: var(--white);
}

.chatbot-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
}

.chatbot-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}

/* ================== COOKIE CONSENT ================== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--black-soft);
  padding: 14px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.cookie-bar.cookie-visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-icon { font-size: 1.4rem; flex-shrink: 0; }

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  min-width: 200px;
}

.cookie-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-link:hover { color: #4fb8bb; }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-reject-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-reject-btn:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.cookie-accept-btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-accept-btn:hover { background: var(--primary-dark); }

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cookie-actions { width: 100%; }
  .cookie-reject-btn, .cookie-accept-btn { flex: 1; text-align: center; }
  .social-float-tabs { top: 40%; }
  .chatbot-wrap { bottom: 16px; left: 16px; }
  .chatbot-window { width: 270px; }
}

/* ================== POPUP AD ================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.popup-overlay.popup-visible {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.popup-overlay.popup-visible .popup-box {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: background 0.2s;
}

.popup-close:hover { background: rgba(0,0,0,0.75); }

.popup-media {
  position: relative;
  width: 100%;
  max-height: 340px;
  overflow: hidden;
  background: var(--black-soft);
}

.popup-img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

.popup-video {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

.popup-content {
  padding: 28px 32px 32px;
  text-align: center;
}

.popup-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.popup-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--black-soft);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.25;
}

.popup-subtitle {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.popup-btn { width: 100%; justify-content: center; }

@media (max-width: 480px) {
  .popup-content { padding: 20px 20px 24px; }
  .popup-media { max-height: 220px; }
  .popup-img, .popup-video { max-height: 220px; }
}

/* ================== NAV ACTIVE ================== */
.nav-menu a.nav-active {
  color: var(--primary);
  font-weight: 600;
}

/* ================== HERO BANNER ================== */
.hero-banner-section {
  padding: 0;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 80px 0;
}

.hero-banner-content .hero-badge { margin-bottom: 20px; }

.hero-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ================== PRODUCTS SECTION ================== */
.products { background: var(--gray-soft); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--primary-light);
  text-decoration: none;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img { transform: scale(1.05); }

.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0.4;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-card-status {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.product-card-status--low { background: #fef3ec; color: var(--accent); }
.product-card-status--out { background: #fee2e2; color: #991b1b; }

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.product-card-price .price-current { font-size: 1.3rem; }

.product-card-actions {
  display: flex;
  gap: 8px;
}

.product-card-actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.8rem;
  padding: 10px 12px;
}

/* ================== FAQ SECTION ================== */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 2px 16px rgba(35,124,128,0.10);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--black-soft);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s;
  font-family: inherit;
}

.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              padding-bottom 0.3s ease;
  padding: 0 24px;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin: 0;
  padding-top: 4px;
}

@media (max-width: 768px) {
  .faq-question { padding: 16px 18px; font-size: 0.88rem; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding-bottom: 16px; }
}

/* ================== MID BANNER ================== */
.mid-banner {
  position: relative;
  min-height: 220px;
  background: var(--primary);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mid-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(35,124,128,0.92) 0%, rgba(35,124,128,0.6) 60%, rgba(35,124,128,0.1) 100%);
}

.mid-banner-content {
  max-width: 520px;
  padding: 48px 0;
}

.mid-banner-title {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.mid-banner-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

/* ================== AOS ANIMATIONS ================== */
[data-aos] { opacity: 0; transition-property: opacity, transform; }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-in"] { transform: none; }

/* ======================================================
   PAGE HERO (shared: about, faq, wholesale)
   ====================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5c60 100%);
  padding: clamp(60px,8vw,100px) 0 clamp(48px,6vw,80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-content { position: relative; max-width: 680px; margin: 0 auto; }
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.page-hero-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

/* ======================================================
   ABOUT — HERO
   ====================================================== */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5c60 60%, #0f3a3d 100%);
  padding: clamp(64px,9vw,110px) 0 clamp(52px,7vw,90px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(238,116,50,.18) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.about-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 99px; margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.2);
}
.about-hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.1;
}
.about-hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.82); line-height: 1.7;
  max-width: 560px; margin: 0 auto;
}

/* ======================================================
   ABOUT — MISSION / VISION
   ====================================================== */
.about-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-mv-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border, #e5e7eb);
  border-radius: var(--radius-lg, 16px);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.about-mv-card--accent {
  background: linear-gradient(135deg, #fff8f4 0%, #fff 100%);
  border-color: #f4c9ac;
}
.about-mv-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--primary-light, #e8f5f5);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-mv-card--accent .about-mv-icon { background: #fef0e6; color: var(--accent, #ee7432); }
.about-mv-title { font-size: 1.2rem; font-weight: 700; color: var(--gray-900, #111827); }
.about-mv-text { font-size: .935rem; line-height: 1.72; color: var(--text-secondary, #4b5563); }

/* ======================================================
   ABOUT — STORY
   ====================================================== */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.section-label {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--primary); margin-bottom: 10px;
}
.about-story-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--gray-900, #111827);
  letter-spacing: -0.02em; margin-bottom: 20px; line-height: 1.25;
}
.about-story-body p {
  font-size: .95rem; line-height: 1.78;
  color: var(--text-secondary, #4b5563); margin-bottom: 14px;
}
.about-story-body p:last-child { margin-bottom: 0; }
.about-story-image img {
  width: 100%; border-radius: 20px;
  aspect-ratio: 4/3; object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.about-story-image-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: 20px;
  background: var(--gray-bg, #f9fafb);
  border: 2px dashed var(--gray-border, #e5e7eb);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-muted, #9ca3af); font-size: .85rem;
}

/* ======================================================
   ABOUT — VALUES
   ====================================================== */
.about-values-list {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; max-width: 720px; margin: 0 auto;
}
.about-value-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 99px;
  border: 1.5px solid var(--primary); color: var(--primary);
  font-size: .9rem; font-weight: 600;
  background: var(--primary-light, #e8f5f5);
}

/* ======================================================
   ABOUT — CTA
   ====================================================== */
.about-cta { background: var(--gray-bg, #f9fafb); }
.about-cta-box {
  text-align: center; padding: 52px 32px; background: var(--white);
  border-radius: var(--radius-lg, 16px);
  border: 1.5px solid var(--gray-border, #e5e7eb);
  max-width: 680px; margin: 0 auto;
}
.about-cta-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary, #4b5563); line-height: 1.65; margin-bottom: 28px;
}
.about-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline-primary {
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
  border-radius: 99px; font-weight: 700; transition: background .2s, color .2s;
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; }

/* ======================================================
   FAQ — STANDALONE PAGE
   ====================================================== */
.faq-page-section { background: var(--white); }
.faq-list--page { max-width: 820px; margin: 0 auto 48px; }
.faq-page-cta { max-width: 820px; margin: 0 auto; }
.faq-page-cta-inner {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a5c60 100%);
  border-radius: var(--radius-lg, 16px); padding: 28px 32px; color: #fff; flex-wrap: wrap;
}
.faq-page-cta-icon {
  width: 54px; height: 54px; background: rgba(255,255,255,.15); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff;
}
.faq-page-cta-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.faq-page-cta-sub { font-size: .875rem; color: rgba(255,255,255,.82); line-height: 1.5; }
.faq-page-cta > div:nth-child(2) { flex: 1; }
.faq-page-cta .btn-primary { background: #fff; color: var(--primary); white-space: nowrap; }
.faq-page-cta .btn-primary:hover { background: rgba(255,255,255,.9); }

/* ======================================================
   WHOLESALE PAGE
   ====================================================== */
.page-hero--wholesale {
  background: linear-gradient(135deg, #0f3a3d 0%, var(--primary) 50%, #1a6b4a 100%);
}
.wholesale-benefits { background: var(--gray-900, #111827); padding: 20px 0; }
.wholesale-benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.wholesale-benefit-item {
  display: flex; align-items: center; gap: 10px; padding: 16px 20px;
  color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.08);
}
.wholesale-benefit-item:last-child { border-right: none; }
.wholesale-benefit-item svg { color: var(--accent, #ee7432); flex-shrink: 0; }

.wholesale-form-section { background: var(--gray-bg, #f9fafb); }
.wholesale-form-wrap { max-width: 780px; margin: 0 auto; }
.wholesale-form-header { text-align: center; margin-bottom: 32px; }
.wholesale-form-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800;
  color: var(--gray-900, #111827); letter-spacing: -0.02em; margin-bottom: 8px;
}
.wholesale-form-sub { font-size: .95rem; color: var(--text-secondary, #4b5563); }
.wholesale-form {
  background: var(--white); border-radius: var(--radius-lg, 16px);
  border: 1.5px solid var(--gray-border, #e5e7eb);
  padding: 36px 40px; box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.ws-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.ws-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.ws-grid-2 .ws-field { margin-bottom: 0; }
.ws-field label { font-size: .8rem; font-weight: 600; color: var(--gray-700, #374151); }
.ws-required { color: #dc2626; }
.ws-input {
  padding: 11px 14px; border: 1.5px solid var(--gray-border, #e5e7eb);
  border-radius: 10px; font-size: .9rem; font-family: inherit;
  color: var(--gray-900, #111827); background: var(--white); outline: none;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.ws-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(35,124,128,.12); }
.ws-input.is-error { border-color: #dc2626; }
.ws-textarea { min-height: 100px; resize: vertical; }
.ws-error { font-size: .75rem; color: #dc2626; margin-top: 2px; }
.ws-submit { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 8px; }
.ws-btn { width: 100%; justify-content: center; border-radius: 10px; font-size: 1rem; }
.ws-privacy { font-size: .78rem; color: var(--text-muted, #9ca3af); text-align: center; }
.ws-privacy a { color: var(--primary); }
.ws-alert {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 10px; font-size: .9rem; font-weight: 500; margin-bottom: 24px;
}
.ws-alert--success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.wholesale-wa-alt {
  text-align: center; margin-top: 32px;
  color: var(--text-muted, #9ca3af); font-size: .875rem;
}
.wholesale-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 10px 22px; border-radius: 99px;
  font-weight: 700; font-size: .9rem;
  text-decoration: none; margin-top: 10px; transition: background .2s;
}
.wholesale-wa-btn:hover { background: #1db954; }

/* ======================================================
   RESPONSIVE — NEW PAGES
   ====================================================== */
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-story-image { order: -1; }
  .about-mv-grid { grid-template-columns: 1fr; }
  .wholesale-benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .wholesale-form { padding: 24px 20px; }
  .ws-grid-2 { grid-template-columns: 1fr; }
  .about-cta-actions { flex-direction: column; align-items: center; }
  .faq-page-cta-inner { flex-direction: column; text-align: center; }
  .faq-page-cta > div:nth-child(2) { flex: none; }
  .wholesale-benefits-grid { grid-template-columns: 1fr; }
  .wholesale-benefit-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .wholesale-benefit-item:last-child { border-bottom: none; }
}

/* ======================================================
   PRODUCT DETAIL PAGE
   ====================================================== */

/* Breadcrumb */
.pd-breadcrumb {
  background: var(--gray-soft);
  border-bottom: 1px solid var(--gray-border);
  padding: 12px 0;
}
.pd-breadcrumb-nav {
  font-size: .8rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pd-breadcrumb-link { color: var(--primary); text-decoration: none; }
.pd-breadcrumb-link:hover { text-decoration: underline; }
.pd-breadcrumb-sep { color: var(--gray-border); }

/* Main section wrapper */
.pd-section-main { background: var(--white); padding: 56px 0; }
.pd-section-info  { background: var(--gray-soft); padding: 64px 0; }
.pd-section-steps { background: var(--white); padding: 64px 0; }

/* Main 2-col grid: image | info */
.pd-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Main image */
.pd-main-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
  aspect-ratio: 4/3;
  background: var(--gray-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}

/* Thumbnail strip */
.pd-thumb-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pd-thumb-strip .thumb-item {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--gray-border);
  transition: border-color .2s;
  flex-shrink: 0;
}
.pd-thumb-strip .thumb-item.thumb-active { border-color: var(--primary); }
.pd-thumb-strip .thumb-item img { width: 100%; height: 100%; object-fit: cover; }

/* Status row */
.pd-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pd-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pd-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

/* Product title & description */
.pd-product-title {
  font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 800;
  color: var(--black-soft);
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.pd-short-desc {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Price */
.pd-price { margin-bottom: 28px; }
.pd-savings-badge {
  background: var(--accent);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* Urgency */
.pd-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-light);
  border: 1px solid #fddcca;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 24px;
}
.pd-urgency-icon { font-size: 1.1rem; }
.pd-urgency-text { font-size: .85rem; font-weight: 600; color: var(--accent); }

/* CTA */
.pd-cta-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.pd-cta-hint {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-text);
  margin-bottom: 24px;
}
.pd-out-of-stock {
  background: #fee2e2;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Trust grid (3 cols) */
.pd-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.pd-trust-item {
  text-align: center;
  padding: 12px 8px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
}
.pd-trust-icon { font-size: 1.3rem; margin-bottom: 4px; }
.pd-trust-label { font-size: .72rem; font-weight: 600; color: var(--gray-text); }

/* Specs table */
.pd-specs { border-top: 1px solid var(--gray-border); padding-top: 20px; }
.pd-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: .875rem;
  flex-wrap: wrap;
  gap: 8px;
}
.pd-spec-row--last { border-bottom: none; }
.pd-spec-key { font-weight: 600; color: var(--black-soft); flex-shrink: 0; }
.pd-spec-val { color: var(--gray-text); text-align: right; }

/* Info section: description | features */
.pd-info-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
}
.pd-section-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black-soft);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.pd-desc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
}
.pd-desc-text { font-size: .95rem; line-height: 1.9; color: var(--gray-text); }
.pd-side-cards { display: flex; flex-direction: column; gap: 24px; }
.pd-feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
}
.pd-benefits-card {
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(35,124,128,.15);
}
.pd-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.pd-card-dot--primary { background: var(--primary); }
.pd-card-dot--accent  { background: var(--accent); }
.pd-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pd-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--gray-text);
}
.pd-list-item--accent { color: var(--primary-dark); }
.pd-check-icon { flex-shrink: 0; margin-top: 2px; }
.pd-spark { color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* Steps grid (4 cols) */
.pd-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CTA action buttons row */
.pd-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.pd-back-btn {
  color: rgba(255,255,255,.8);
  border: 2px solid rgba(255,255,255,.35);
  background: transparent;
}
.pd-back-btn:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* ── RESPONSIVE: Product Detail ───────────────────────── */
@media (max-width: 1024px) {
  .pd-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pd-trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .site-header .btn-primary { padding: 8px 14px; font-size: .78rem; }

  .pd-section-main  { padding: 36px 0; }
  .pd-section-info  { padding: 40px 0; }
  .pd-section-steps { padding: 40px 0; }

  .pd-main-grid     { grid-template-columns: 1fr; gap: 32px; }
  .pd-info-grid     { grid-template-columns: 1fr; gap: 24px; }

  .pd-thumb-strip .thumb-item { width: 60px; height: 60px; }

  .pd-desc-card { padding: 20px; }
  .pd-feature-card, .pd-benefits-card { padding: 20px; }

  .cta-final { padding: 64px 0; }

  .pd-cta-actions { flex-direction: column; align-items: center; }
  .pd-cta-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .pd-steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .pd-trust-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .pd-trust-item { padding: 10px 4px; }
  .pd-trust-label { font-size: .65rem; }
  .pd-thumb-strip .thumb-item { width: 52px; height: 52px; }
  .social-float-tabs { display: none; }
  .pd-product-title { font-size: 1.4rem; }
}


/* =====================================================
   Landing one-product CRO upgrade — Masamu Organizador
   ===================================================== */
.lp-hero{padding:92px 0 72px;background:radial-gradient(circle at 82% 8%,rgba(238,116,50,.12),transparent 30%),linear-gradient(135deg,#f8fafc 0%,#eef7f7 100%);overflow:hidden}.lp-hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:56px;align-items:center}.lp-hero-copy h1{font-size:clamp(2.2rem,5vw,4.7rem);line-height:.98;letter-spacing:-.06em;color:#0f172a;margin:14px 0 22px;font-weight:900}.lp-hero-copy p{font-size:1.08rem;line-height:1.8;color:#475569;max-width:620px}.lp-pill,.lp-eyebrow{display:inline-flex;align-items:center;gap:8px;border-radius:999px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.lp-pill{background:#fff;color:#237c80;padding:8px 14px;font-size:.72rem;box-shadow:0 12px 30px rgba(15,23,42,.08)}.lp-pill-dark{background:#111827;color:#fff}.lp-eyebrow{color:#ee7432;font-size:.75rem;margin-bottom:10px}.lp-price-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin:26px 0}.lp-price-row strong{font-size:2.15rem;color:#111827;letter-spacing:-.04em}.lp-price-row span{font-size:1.15rem;text-decoration:line-through;color:#94a3b8}.lp-price-row em{font-style:normal;background:#fee2e2;color:#991b1b;border-radius:999px;padding:5px 10px;font-weight:900}.lp-cta-row{display:flex;gap:12px;flex-wrap:wrap}.lp-trust-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}.lp-trust-row span{background:rgba(255,255,255,.8);border:1px solid #e2e8f0;border-radius:999px;padding:8px 12px;color:#334155;font-size:.86rem;font-weight:700}.lp-hero-media{position:relative}.lp-hero-media img{width:100%;height:min(72vh,650px);object-fit:cover;border-radius:32px;box-shadow:0 30px 80px rgba(15,23,42,.22)}.lp-media-card{position:absolute;left:-24px;bottom:28px;background:#fff;border-radius:22px;padding:18px 20px;box-shadow:0 24px 50px rgba(15,23,42,.18);max-width:190px}.lp-media-card strong{display:block;color:#237c80;font-size:1.7rem;line-height:1;font-weight:900}.lp-media-card span{font-size:.88rem;color:#475569}.lp-split{display:grid;grid-template-columns:1fr .86fr;gap:30px;align-items:stretch}.lp-split h2,.lp-product-detail h2,.lp-offer h2{font-size:clamp(1.8rem,3vw,3rem);line-height:1.08;letter-spacing:-.04em;color:#111827;margin-bottom:16px}.lp-split p,.lp-product-detail p,.lp-offer p{color:#64748b;line-height:1.8}.lp-solution-box{background:#111827;color:#fff;border-radius:28px;padding:32px;box-shadow:0 20px 60px rgba(15,23,42,.15)}.lp-solution-box h3{color:#fff;font-size:1.55rem;line-height:1.18;margin-bottom:12px}.lp-solution-box p{color:#cbd5e1}.lp-benefit-grid,.lp-step-grid,.lp-testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.lp-benefit-card,.lp-step-card,.lp-testimonial{background:#fff;border:1px solid #e5e7eb;border-radius:26px;padding:26px;box-shadow:0 14px 35px rgba(15,23,42,.06);transition:transform .2s,box-shadow .2s}.lp-benefit-card:hover,.lp-step-card:hover,.lp-testimonial:hover{transform:translateY(-4px);box-shadow:0 22px 50px rgba(15,23,42,.1)}.lp-benefit-card span,.lp-step-card span{width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;border-radius:16px;background:#e8f5f5;color:#237c80;font-weight:900;margin-bottom:20px}.lp-benefit-card h3,.lp-step-card h3{color:#111827;font-size:1.15rem;margin-bottom:10px}.lp-benefit-card p,.lp-step-card p,.lp-testimonial p{color:#64748b;line-height:1.75}.lp-product-detail{background:#f8fafc}.lp-detail-grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:56px;align-items:center}.lp-gallery-stack{display:grid;grid-template-columns:1fr 1fr;gap:16px}.lp-gallery-stack img{width:100%;height:470px;object-fit:cover;border-radius:28px;box-shadow:0 18px 45px rgba(15,23,42,.1)}.lp-gallery-stack img:nth-child(2){margin-top:50px}.lp-check-list{list-style:none;margin:24px 0;padding:0;display:grid;gap:10px}.lp-check-list li{position:relative;padding-left:30px;color:#334155;font-weight:650}.lp-check-list li:before{content:'✓';position:absolute;left:0;top:0;width:20px;height:20px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#dcfce7;color:#166534;font-size:.78rem;font-weight:900}.lp-specs{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:22px 0 28px}.lp-specs div{border:1px solid #e2e8f0;background:#fff;border-radius:18px;padding:14px}.lp-specs strong{display:block;color:#111827;font-size:.82rem}.lp-specs span{display:block;color:#64748b;font-size:.82rem;margin-top:4px}.lp-steps{background:#fff}.lp-step-card span{background:#111827;color:#fff}.lp-social-proof{background:#f8fafc}.lp-testimonial div{color:#f59e0b;margin-bottom:14px;letter-spacing:.12em}.lp-testimonial strong{display:block;color:#111827;margin-top:18px}.lp-offer-box{display:grid;grid-template-columns:1fr auto;gap:26px;align-items:center;background:linear-gradient(135deg,#237c80 0%,#123d40 100%);border-radius:34px;padding:42px;color:#fff;box-shadow:0 30px 70px rgba(35,124,128,.25)}.lp-offer h2{color:#fff}.lp-offer p{color:rgba(255,255,255,.78)}.lp-offer-action{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);border-radius:26px;padding:24px;min-width:260px}.lp-offer-action .lp-price-row strong{color:#fff}.lp-offer-action .lp-price-row span{color:rgba(255,255,255,.55)}.lp-faq-list{max-width:860px;margin:0 auto;display:grid;gap:12px}.lp-faq-list details{background:#fff;border:1px solid #e5e7eb;border-radius:18px;padding:18px 22px}.lp-faq-list summary{cursor:pointer;color:#111827;font-weight:800}.lp-faq-list p{margin-top:12px;color:#64748b;line-height:1.7}.lp-checkout{background:linear-gradient(135deg,#f8fafc,#eef7f7)}.lp-checkout-grid{display:grid;grid-template-columns:1fr .44fr;gap:28px;align-items:start}.lp-checkout-card,.lp-order-summary{background:#fff;border:1px solid #e5e7eb;border-radius:30px;padding:30px;box-shadow:0 20px 55px rgba(15,23,42,.08)}.lp-checkout-card h1{color:#111827;font-size:clamp(2rem,4vw,3.2rem);letter-spacing:-.05em;line-height:1.05;margin:10px 0 12px}.lp-form{display:grid;gap:16px;margin-top:24px}.lp-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.lp-form label{font-size:.84rem;font-weight:800;color:#334155}.lp-form input,.lp-form select,.lp-form textarea{width:100%;display:block;margin-top:7px;border:1.5px solid #e2e8f0;border-radius:14px;padding:13px 14px;font:inherit;color:#111827;background:#fff}.lp-form textarea{min-height:110px;resize:vertical}.lp-form small{display:block;color:#dc2626;margin-top:5px}.lp-alert-success{background:#dcfce7;color:#166534;border-left:5px solid #16a34a;border-radius:16px;padding:14px 16px;margin:18px 0}.lp-order-summary img{width:100%;height:280px;object-fit:cover;border-radius:22px;margin-bottom:18px}.lp-order-summary h2{font-size:1.35rem;color:#111827;line-height:1.15}.lp-order-summary p{color:#64748b;margin-top:8px}.lp-summary-price{font-size:2rem;font-weight:900;color:#237c80;margin:18px 0}
@media(max-width:960px){.lp-hero-grid,.lp-split,.lp-detail-grid,.lp-checkout-grid,.lp-offer-box{grid-template-columns:1fr}.lp-hero{padding-top:56px}.lp-benefit-grid,.lp-step-grid,.lp-testimonial-grid{grid-template-columns:1fr}.lp-gallery-stack img{height:360px}.lp-gallery-stack img:nth-child(2){margin-top:0}.lp-offer-action{min-width:0}.lp-form-grid,.lp-specs{grid-template-columns:1fr}.lp-media-card{left:18px}.lp-hero-media img{height:520px}.nav-menu a[href$="#productos"]{font-weight:800}}
@media(max-width:560px){.container{padding:0 18px}.lp-hero-copy h1{font-size:2.45rem}.lp-hero-media img{height:460px;border-radius:24px}.lp-gallery-stack{grid-template-columns:1fr}.lp-gallery-stack img{height:320px}.lp-offer-box{padding:26px;border-radius:24px}.lp-checkout-card,.lp-order-summary{padding:22px;border-radius:24px}.lp-cta-row .btn{width:100%;justify-content:center}.lp-trust-row span{width:100%;text-align:center}.lp-price-row strong{font-size:1.8rem}}

/* Ajustes landing organizador: carrusel, productos dinámicos y detalle completo */
.lp-hero-carousel{position:relative;padding:0;background:linear-gradient(135deg,#f8fafc 0%,#eef7f7 100%)}
.lp-carousel-track{position:relative;min-height:720px;overflow:hidden}.lp-carousel-slide{position:absolute;inset:0;opacity:0;pointer-events:none;transition:opacity .55s ease}.lp-carousel-slide.is-active{opacity:1;pointer-events:auto;position:relative}.lp-carousel-slide .lp-hero-grid{padding-top:92px;padding-bottom:72px}.lp-hero-media video{width:100%;height:min(72vh,650px);object-fit:cover;border-radius:32px;box-shadow:0 30px 80px rgba(15,23,42,.22);display:block}.lp-carousel-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:46px;height:46px;border:0;border-radius:999px;background:rgba(255,255,255,.92);box-shadow:0 14px 35px rgba(15,23,42,.14);font-size:2rem;line-height:1;color:#111827;cursor:pointer;display:flex;align-items:center;justify-content:center}.lp-carousel-prev{left:22px}.lp-carousel-next{right:22px}.lp-carousel-dots{position:absolute;left:50%;bottom:20px;transform:translateX(-50%);z-index:5;display:flex;gap:9px}.lp-carousel-dots button{width:9px;height:9px;border-radius:999px;border:0;background:rgba(15,23,42,.25);cursor:pointer;transition:width .2s,background .2s}.lp-carousel-dots button.is-active{width:28px;background:#237c80}.lp-products-showcase{background:#fff}.lp-product-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.lp-product-card{background:#fff;border:1px solid #e5e7eb;border-radius:28px;overflow:hidden;box-shadow:0 16px 42px rgba(15,23,42,.07);display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s}.lp-product-card:hover{transform:translateY(-4px);box-shadow:0 24px 60px rgba(15,23,42,.12)}.lp-product-card-img{position:relative;display:block;background:#f1f5f9}.lp-product-card-img img{width:100%;height:280px;object-fit:cover;display:block}.lp-product-card-img span{position:absolute;top:14px;right:14px;background:#fee2e2;color:#991b1b;border-radius:999px;padding:6px 10px;font-size:.78rem;font-weight:900}.lp-product-card-body{padding:22px;display:flex;flex-direction:column;gap:12px;flex:1}.lp-product-card-body h3{font-size:1.25rem;color:#111827;line-height:1.15;margin:0}.lp-product-card-body p{color:#64748b;line-height:1.6;margin:0}.lp-product-card-body ul{list-style:none;margin:0;padding:0;display:grid;gap:7px}.lp-product-card-body li{position:relative;padding-left:23px;color:#334155;font-size:.9rem;font-weight:650}.lp-product-card-body li:before{content:'✓';position:absolute;left:0;color:#16a34a;font-weight:900}.lp-product-card-bottom{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:12px}.lp-product-card-bottom strong{font-size:1.25rem;color:#237c80}.lp-long-description{margin:16px 0 22px;color:#475569;line-height:1.8;background:#fff;border:1px solid #e5e7eb;border-radius:18px;padding:18px}.lp-detail-columns{display:grid;grid-template-columns:1fr 1fr;gap:18px}.lp-detail-columns h3{color:#111827;font-size:1rem;margin:0 0 10px}.lp-gallery-stack{grid-template-columns:1fr 1fr}.lp-gallery-stack img:nth-child(2n){margin-top:50px}.lp-gallery-stack img:nth-child(3),.lp-gallery-stack img:nth-child(4){margin-top:0}.lp-gallery-stack img{height:360px}.nav-menu a[href$="#opciones"]{font-weight:800}
@media(max-width:960px){.lp-carousel-track{min-height:auto}.lp-carousel-slide{position:absolute}.lp-carousel-slide.is-active{position:relative}.lp-carousel-slide .lp-hero-grid{padding-top:56px}.lp-product-card-grid{grid-template-columns:1fr 1fr}.lp-detail-columns{grid-template-columns:1fr}.lp-carousel-btn{top:auto;bottom:18px;transform:none}.lp-carousel-prev{left:18px}.lp-carousel-next{right:18px}.lp-hero-media video{height:520px}.lp-carousel-dots{bottom:30px}}
@media(max-width:560px){.lp-product-card-grid{grid-template-columns:1fr}.lp-product-card-img img{height:240px}.lp-hero-media video{height:460px;border-radius:24px}.lp-carousel-btn{width:40px;height:40px;font-size:1.6rem}.lp-carousel-dots{bottom:26px}.lp-gallery-stack img:nth-child(2n){margin-top:0}}


/* =====================================================
   Testimonios visuales + sección Instagram para landing
   ===================================================== */
.lp-testimonial-grid--mixed{margin-top:24px}.lp-testimonial-rich{position:relative;overflow:hidden}.lp-testimonial-rich>img{width:54px;height:54px;border-radius:50%;object-fit:cover;border:3px solid #e8f5f5;margin-bottom:14px}.lp-stars{color:#f59e0b;margin-bottom:14px;letter-spacing:.12em}.lp-reels-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-bottom:28px}.lp-reel-card{border-radius:28px;box-shadow:0 22px 55px rgba(15,23,42,.16);border:1px solid rgba(255,255,255,.12);min-height:420px}.lp-reel-card .reel-video{background:#0f172a}.lp-instagram{background:#fff}.lp-instagram-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.lp-instagram-card{background:#fff;border:1px solid #e5e7eb;border-radius:28px;overflow:hidden;box-shadow:0 16px 42px rgba(15,23,42,.07);transition:transform .2s,box-shadow .2s}.lp-instagram-card:hover{transform:translateY(-4px);box-shadow:0 24px 60px rgba(15,23,42,.12)}.lp-instagram-media{position:relative;display:block;aspect-ratio:9/16;background:linear-gradient(160deg,#f09433 0%,#e6683c 28%,#dc2743 55%,#bc1888 100%);overflow:hidden;color:#fff;text-decoration:none}.lp-instagram-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .25s}.lp-instagram-card:hover .lp-instagram-media img{transform:scale(1.04)}.lp-reel-badge{position:absolute;top:14px;left:14px;background:rgba(0,0,0,.58);color:#fff;border-radius:999px;padding:7px 11px;font-size:.78rem;font-weight:900;backdrop-filter:blur(5px)}.lp-instagram-placeholder{height:100%;display:flex;flex-direction:column;gap:10px;align-items:center;justify-content:center;text-align:center}.lp-instagram-placeholder span{width:64px;height:64px;border:2px solid rgba(255,255,255,.72);border-radius:999px;display:flex;align-items:center;justify-content:center;font-size:1.55rem;background:rgba(255,255,255,.16);backdrop-filter:blur(4px)}.lp-instagram-placeholder strong{font-size:1.1rem}.lp-instagram-embed{width:100%;height:100%;background:#fff;overflow:auto}.lp-instagram-embed iframe,.lp-instagram-embed blockquote{max-width:100%!important;min-width:0!important;width:100%!important;margin:0!important}.lp-instagram-body{padding:20px}.lp-instagram-body h3{font-size:1.08rem;color:#111827;line-height:1.18;margin:0 0 8px}.lp-instagram-body p{color:#64748b;line-height:1.65;margin:0 0 12px}.lp-instagram-body a{color:#237c80;font-weight:900;text-decoration:none}.nav-menu a[href$="#instagram"],.nav-menu a[href$="#testimonios"]{font-weight:800}
@media(max-width:1100px){.lp-reels-strip{grid-template-columns:repeat(3,1fr)}}
@media(max-width:960px){.lp-reels-strip,.lp-instagram-grid{grid-template-columns:repeat(2,1fr)}.lp-reel-card{min-height:380px}}
@media(max-width:560px){.lp-reels-strip,.lp-instagram-grid{grid-template-columns:1fr}.lp-reel-card{min-height:440px}.lp-instagram-body{padding:18px}.lp-instagram-media{aspect-ratio:9/14}}

/* =====================================================
   Sección de suscripción / nuevos productos
   ===================================================== */
.lp-subscribe{
  background: radial-gradient(circle at top left, rgba(35,124,128,.20), transparent 36%), linear-gradient(135deg,#0f2f2f 0%,#102526 100%);
  color:#fff;
  overflow:hidden;
}
.lp-subscribe-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:36px;align-items:center}.lp-subscribe-copy h2{font-size:clamp(2rem,4vw,4rem);line-height:.98;margin:10px 0 18px;color:#fff;letter-spacing:-.055em}.lp-subscribe-copy p{font-size:1.08rem;line-height:1.8;color:rgba(255,255,255,.78);max-width:680px}.lp-subscribe .lp-eyebrow{color:#7dd3d6;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);padding:8px 14px;border-radius:999px}.lp-subscribe-benefits{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}.lp-subscribe-benefits span{display:inline-flex;align-items:center;gap:6px;padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.12);font-size:.9rem;font-weight:800}.lp-subscribe-card{background:#fff;color:#111827;border-radius:32px;padding:28px;box-shadow:0 28px 75px rgba(0,0,0,.28);border:1px solid rgba(255,255,255,.16)}.lp-subscribe-card h3{font-size:1.6rem;line-height:1.15;margin:0 0 8px;color:#111827}.lp-subscribe-card>p{color:#64748b;line-height:1.65;margin:0 0 18px}.lp-subscribe-form{display:grid;gap:14px}.lp-form-row label{display:block;font-size:.82rem;font-weight:900;color:#111827;margin:0 0 7px}.lp-form-row input{width:100%;border:1px solid #e5e7eb;border-radius:18px;padding:14px 16px;font:inherit;color:#111827;background:#f8fafc;outline:none;transition:border-color .2s,box-shadow .2s,background .2s}.lp-form-row input:focus{border-color:#237c80;background:#fff;box-shadow:0 0 0 4px rgba(35,124,128,.13)}.lp-subscribe-form .btn{width:100%;justify-content:center}.lp-subscribe-form small{color:#64748b;line-height:1.55}.lp-subscribe-alert{border-radius:16px;padding:12px 14px;font-weight:800;font-size:.9rem;margin-bottom:12px}.lp-subscribe-alert--success{background:#dcfce7;color:#166534}.lp-subscribe-alert--error{background:#fee2e2;color:#991b1b}
@media(max-width:900px){.lp-subscribe-grid{grid-template-columns:1fr}.lp-subscribe-card{padding:22px;border-radius:26px}.lp-subscribe-benefits span{font-size:.84rem}}
