/* ==========================================================================
   DENTALLITOS — SISTEMA DE DISEÑO ULTRA PREMIUM (MULISH & INTER)
   Basado fielmente en la composición de index.png
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Mulish:ital,wght@0,400;0,600;0,700;0,800;0,900;0,1000;1,700&display=swap');

:root {
  /* Paleta cromática oficial */
  --dt-red: #ff3823;
  --dt-red-hover: #e02f1b;
  --dt-teal: #00b8c4;
  --dt-teal-light: #00d2d3;
  --dt-purple: #8327df;
  --dt-purple-dark: #6d20be;
  --dt-purple-light: #c084fc;
  --dt-navy: #061a33;
  --dt-navy-dark: #041224;
  --dt-navy-card: #0a2240;
  --dt-yellow: #f59e0b;
  --dt-yellow-light: #fbbf24;
  --dt-lime: #65a30d;
  --dt-lime-bright: #84cc16;
  --dt-coral: #e11d48;
  --dt-blue: #0284c7;
  --dt-darkgreen: #064e4b;
  --dt-bg-light: #FDF9F5;
  --dt-bg-subtle: #fbfbfa;
  --dt-text-main: #0f172a;
  --dt-text-muted: #64748b;
  --dt-border-light: #e2e8f0;
  
  /* Fuentes */
  --font-display: 'Mulish', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sombras y transiciones */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.05);
  --shadow-glow-purple: 0 10px 30px rgba(131, 39, 223, 0.35);
  --shadow-glow-teal: 0 10px 30px rgba(0, 184, 196, 0.35);
  
  --radius-pill: 9999px;
  --radius-card: 24px;
  --radius-sm: 12px;
}

/* Reset y base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dt-text-main);
  background-color: var(--dt-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   BOTONES Y COMPONENTES REUTILIZABLES
   ========================================================================== */
.btn-pill-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--dt-purple);
  color: #ffffff !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.65rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(131, 39, 223, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pill-purple:hover {
  background-color: var(--dt-purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-purple);
  color: #ffffff !important;
}

.btn-pill-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--dt-teal-light);
  color: var(--dt-navy) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.65rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 210, 211, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pill-teal:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 210, 211, 0.4);
}

.btn-pill-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: #ffffff;
  color: var(--dt-purple) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pill-white:hover {
  background-color: #f8fafc;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.btn-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.btn-pill-purple:hover .btn-pill-icon,
.btn-pill-teal:hover .btn-pill-icon {
  transform: translateX(3px);
}

.btn-video-play {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dt-navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: all 0.25s ease;
}

.btn-video-play .play-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dt-navy);
  font-size: 0.85rem;
  padding-left: 3px;
  transition: all 0.25s ease;
}

.btn-video-play:hover {
  color: var(--dt-purple);
}

.btn-video-play:hover .play-circle {
  border-color: var(--dt-purple);
  background-color: rgba(131, 39, 223, 0.08);
  color: var(--dt-purple);
  transform: scale(1.08);
}

/* Badges y Tags */
.badge-tag-purple {
  display: inline-block;
  background: rgba(131, 39, 223, 0.1);
  color: var(--dt-purple);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

.badge-tag-teal {
  display: inline-block;
  background: rgba(0, 184, 196, 0.15);
  color: var(--dt-teal);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   00. NAVBAR
   ========================================================================== */
.dt-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(254, 248, 245, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  padding: 0.85rem 0;
  transition: all 0.3s ease;
}

.dt-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dt-navbar__logo {
  position: relative;
  z-index: 1001;
}

.dt-navbar__logo img {
  height: 32px;
  width: auto;
}

.dt-navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dt-navbar__link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  position: relative;
}

.dt-navbar__link:hover {
  color: var(--dt-red);
}

.dt-navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dt-navbar__burger {
  display: none;
  background: #f1f5f9;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dt-navy);
}

/* ==========================================================================
   01. HERO SECTION
   ========================================================================== */
.dt-hero {
  position: relative;
  background: transparent;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dt-red);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.title-articulos {
  color: var(--dt-navy);
  display: block;
}

.title-que-crean {
  color: var(--dt-teal);
  display: block;
}

.title-sonrisas {
  color: var(--dt-red);
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: #475569;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-trust .avatar-img {
  height: 28px;
  width: auto;
}

.hero-trust-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-img {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
}

.hero-scroll-indicator {
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #334155;
  font-size: 0.75rem;
  font-style: italic;
  opacity: 0.85;
}

.hero-scroll-indicator svg {
  margin-top: 4px;
}

/* ==========================================================================
   02. PERSONALIZACIÓN ("tu marca, tu estilo, tu impacto")
   ========================================================================== */
.dt-personalizacion {
  padding: 4rem 0;
  background: transparent;
}

.personalizacion-card {
  background: #021330;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.personalizacion-left {
  padding: 4rem 3.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.personalizacion-eyebrow {
  color: var(--dt-teal-light);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.personalizacion-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.personalizacion-title .txt-marca { color: #ffffff; display: block; }
.personalizacion-title .txt-estilo { color: #FA92F6; display: block; }
.personalizacion-title .txt-impacto { color: var(--dt-teal-light); display: block; }

.personalizacion-desc {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.techniques-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  margin-bottom: 3rem;
}

.technique-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
  transition: transform 0.2s ease;
}

.technique-item:hover {
  transform: translateX(4px);
  color: #ffffff;
}

.technique-item i {
  color: var(--dt-teal-light);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.personalizacion-right {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.personalizacion-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.personalizacion-floating-cta {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 10;
}

/* ==========================================================================
   03. CATEGORÍAS BENTO CON CORTES DIAGONALES
   ========================================================================== */
.dt-bento-section {
  padding: 4rem 0 5rem;
  background: transparent;
}

.bento-grid-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--dt-bg-light);
  padding: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  transform: skew(-5deg, 2deg);
  transform-origin: center;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.bento-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  color: #ffffff;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transition: box-shadow 0.35s ease;
  cursor: pointer;
  z-index: 1;
}

.bento-card__content {
  transform: skew(5deg, -2deg);
  position: relative;
  z-index: 2;
}

.bento-card:hover {
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.bento-card__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.bento-card__desc {
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 200px;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.bento-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.bento-card:hover .bento-card__link i {
  transform: translateX(4px);
}

.bento-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: skew(5deg, -2deg) scale(1.15);
  transform-origin: center;
  z-index: 1;
}

.bento-card:hover .bento-card__img {
  transform: skew(5deg, -2deg) scale(1.22);
}

/* Card 1: Textiles (Purple) */
.bento-card--textiles {
  grid-column: span 7;
  background-color: var(--dt-purple);
  min-height: 290px;
  margin: -60px 0 0 -80px;
  padding-top: calc(2.25rem + 60px);
  padding-left: calc(2.25rem + 80px);
}

/* Card 2: Kits (Dark Green) */
.bento-card--kits {
  grid-column: span 5;
  background-color: var(--dt-darkgreen);
  min-height: 290px;
  margin: -60px -80px 0 0;
  padding-top: calc(2.25rem + 60px);
  padding-right: calc(2.25rem + 80px);
}

/* Card 3: Bebidas (Amber/Yellow) */
.bento-card--bebidas {
  grid-column: span 4;
  background-color: var(--dt-yellow);
  min-height: 260px;
  margin: 0 0 0 -80px;
  padding-left: calc(2.25rem + 80px);
}

/* Card 4: Tecnología (Blue) */
.bento-card--tecnologia {
  grid-column: span 4;
  background-color: var(--dt-blue);
  min-height: 260px;
}

/* Card 5: Escritorio (Red/Coral) */
.bento-card--escritorio {
  grid-column: span 4;
  background-color: var(--dt-coral);
  min-height: 260px;
  margin: 0 -80px 0 0;
  padding-right: calc(2.25rem + 80px);
}

/* Card 6: Bolsas Premium (Lime Green Full Width) */
.bento-card--bolsas {
  grid-column: span 12;
  background-color: var(--dt-lime);
  min-height: 220px;
  margin: 0 -80px -60px -80px;
  padding-bottom: calc(3rem + 60px);
  padding-left: calc(3rem + 80px);
  padding-right: calc(3rem + 80px);
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.bento-card--bolsas .bento-card__content {
  transform: skew(5deg, -2deg) translateY(30px);
}

@media (max-width: 991px) {
  .bento-grid {
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 1.5rem !important;
  }
  .bento-card {
    margin: 0 !important;
    padding: 2.25rem !important;
  }
  .bento-card--bolsas {
    padding: 3rem !important;
  }
  .bento-card__content {
    transform: none !important;
  }
  .bento-card__img {
    transform: none !important;
  }
  .bento-card:hover .bento-card__img {
    transform: scale(1.05) !important;
  }
}

.bento-card--bolsas .bento-card__content {
  max-width: 450px;
  z-index: 2;
}

.bento-card--bolsas .bento-card__img {
  max-height: 100%;
  right: 2rem;
  bottom: 0;
}

/* ==========================================================================
   03.5. BANNER STOCK
   ========================================================================== */
.banner-stock-eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dt-red);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.banner-stock-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.banner-stock-title .txt-productos { color: var(--dt-navy); display: block; }
.banner-stock-title .txt-dentallitos { color: var(--dt-purple); display: block; }

.banner-stock-desc {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 2.25rem auto;
}

/* ==========================================================================
   04. EXPERIENCIAS ("no vendemos regalamos experiencias")
   ========================================================================== */
.dt-experiencias {
  padding: 4rem 0 5rem;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.experiencias-eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dt-navy);
  margin-bottom: 0.75rem;
}

.experiencias-title {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.experiencias-title .txt-regalamos {
  color: #480b7b;
  display: block;
}

.experiencias-title .txt-experiencias {
  color: #36d1cf;
  display: block;
}

.experiencias-desc {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.experiencias-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experiencias-visual img {
  max-width: 580px;
  width: 100%;
  object-fit: contain;
}

/* ==========================================================================
   05. STATS BAR (4 METRIC CARDS)
   ========================================================================== */
.dt-stats {
  padding: 2.5rem 0 4rem;
  background: transparent;
}

.stats-card {
  background: #ffffff;
  border: 1px solid var(--dt-border-light);
  border-radius: var(--radius-card);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.stats-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: inline-flex;
}

.stats-icon--purple { color: var(--dt-purple); }
.stats-icon--teal { color: var(--dt-teal); }
.stats-icon--red { color: var(--dt-red); }
.stats-icon--yellow { color: var(--dt-yellow); }

.stats-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-number--purple { color: var(--dt-purple); }
.stats-number--teal { color: var(--dt-teal); }
.stats-number--red { color: var(--dt-red); }
.stats-number--yellow { color: var(--dt-yellow); }

.stats-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dt-navy);
  margin-bottom: 0.5rem;
}

.stats-desc {
  font-size: 0.85rem;
  color: var(--dt-text-muted);
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   06. HERRAMIENTAS CREATIVAS (PLANTILLAS PARA DIBUJAR Y COLOREAR)
   ========================================================================== */
.dt-creativas {
  padding: 4rem 0 5rem;
  background: transparent;
}

.creative-promo-box {
  background: #faf5ff;
  border-radius: var(--radius-card);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #f3e8ff;
}

.creative-tag {
  color: var(--dt-purple);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.creative-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--dt-navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.creative-title span {
  color: var(--dt-teal);
}

.creative-desc {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 320px;
}

.creative-mascot {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  max-height: 160px;
  width: auto;
  pointer-events: none;
}

.creative-card {
  background: #ffffff;
  border: 1px solid var(--dt-border-light);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}

.creative-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.creative-card__preview {
  position: relative;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.creative-card__preview img {
  max-height: 120px;
  object-fit: contain;
}

.preview-badge {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  color: #ffffff;
}

.badge--pdf { background-color: var(--dt-teal); }
.badge--web { background-color: var(--dt-coral); }
.badge--acrylic { background-color: var(--dt-blue); }

.creative-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dt-navy);
  margin-bottom: 0.35rem;
}

.creative-card__desc {
  font-size: 0.85rem;
  color: var(--dt-text-muted);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.creative-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.circle-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--dt-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.creative-card:hover .circle-action-btn {
  background-color: var(--dt-navy);
  border-color: var(--dt-navy);
  color: #ffffff;
  transform: scale(1.08);
}

/* ==========================================================================
   07. LOTERÍA DENTAL (#CANTADITADENTAL)
   ========================================================================== */
.dt-loteria {
  padding: 5rem 0;
  background: var(--dt-teal);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.loteria-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.loteria-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--dt-navy);
  line-height: 1.05;
  margin-bottom: 0.25rem;
}

.loteria-hashtag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dt-yellow-light);
  margin-bottom: 1.25rem;
}

.loteria-desc {
  font-size: 1.15rem;
  color: #ffffff;
  max-width: 440px;
  line-height: 1.5;
  margin-bottom: 2.25rem;
}

.loteria-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loteria-showcase img {
  max-width: 540px;
  width: 100%;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
}

/* ==========================================================================
   08. STICKERS WHATSAPP BANNER
   ========================================================================== */
.dt-stickers-parallax {
  position: relative;
  padding: 0 0 100px 0;
  background: linear-gradient(135deg, var(--dt-purple-dark) 0%, #3e0c70 100%);
  overflow: hidden;
  color: #fff;
  min-height: 60vh;
  display: flex;
  align-items: center;
  border-radius: 0;
  margin: 0;
}

.dt-stickers-parallax::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(250, 146, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.sticker-floating {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
  will-change: transform;
}

.stickers-parallax-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: linear-gradient(to right, #FA92F6, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stickers-parallax-desc {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sticker-floating {
    transform: scale(0.6);
  }
}

/* ==========================================================================
   09. FOOTER
   ========================================================================== */
.dt-footer {
  background: transparent;
  border-top: 1px solid var(--dt-border-light);
  padding: 5rem 0 3rem;
  color: var(--dt-navy);
}

.footer-logo img {
  height: 34px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-mission {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--dt-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.social-circle:hover {
  background: var(--dt-purple);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dt-navy);
  margin-bottom: 1.25rem;
  text-transform: lowercase;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: #64748b;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--dt-red);
}

.footer-newsletter-text {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--dt-border-light);
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
}

.newsletter-form button {
  background: var(--dt-purple);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.25s ease;
}

.newsletter-form button:hover {
  background: var(--dt-purple-dark);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--dt-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ==========================================================================
   10. MODALES Y ELEMENTOS FLOTANTES
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-fab:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.premium-modal {
  border-radius: var(--radius-card);
  border: none;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.premium-input-group input,
.premium-input-group textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: #f8fafc;
  border: 1px solid var(--dt-border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.premium-input-group input:focus,
.premium-input-group textarea:focus {
  border-color: var(--dt-purple);
  background: #ffffff;
}

/* ==========================================================================
   PATRONES DENTALES ANIMADOS (SEPARADORES / BACKGROUNDS)
   ========================================================================== */
@keyframes slidePattern {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

@keyframes slidePatternReverse {
  from { background-position: 0 0; }
  to { background-position: -100px 100px; }
}

.dt-pattern-bg {
  position: relative;
}

.dt-pattern-bg > * {
  position: relative;
  z-index: 1; /* Para que el contenido quede encima del patrón */
}

.dt-pattern-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Patrón dental morado (5% opacidad) */
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238327df' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M25 20c4 0 7 2.5 8 6 1 3.5 1 10-1 14-2-4-5-8-7-8s-5 4-7 8c-2-4-2-10.5-1-14 1-3.5 4-6 8-6zm0 3c-2.2 0-4 1.6-4.7 4-.6 2.4-.6 7.4.7 10.6 1.3-2.6 3.2-5.6 4-5.6.8 0 2.7 3 4 5.6 1.3-3.2 1.3-8.2.7-10.6-.7-2.4-2.5-4-4.7-4z'/%3E%3Cpath d='M75 60l2.5 6.5L84 69l-6.5 2.5L75 78l-2.5-6.5L66 69l6.5-2.5z'/%3E%3Ccircle cx='80' cy='30' r='3'/%3E%3Cpath d='M20 75h4v4h2v-4h4v-2h-4v-4h-2v4h-4v2z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  z-index: 0;
  pointer-events: none;
  animation: slidePattern 25s linear infinite;
}

.pattern-separator {
  width: 100%;
  height: 60px;
  background-color: var(--dt-bg-light);
  /* Patrón dental teal (5% opacidad) */
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300b8c4' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M25 20c4 0 7 2.5 8 6 1 3.5 1 10-1 14-2-4-5-8-7-8s-5 4-7 8c-2-4-2-10.5-1-14 1-3.5 4-6 8-6zm0 3c-2.2 0-4 1.6-4.7 4-.6 2.4-.6 7.4.7 10.6 1.3-2.6 3.2-5.6 4-5.6.8 0 2.7 3 4 5.6 1.3-3.2 1.3-8.2.7-10.6-.7-2.4-2.5-4-4.7-4z'/%3E%3Cpath d='M75 60l2.5 6.5L84 69l-6.5 2.5L75 78l-2.5-6.5L66 69l6.5-2.5z'/%3E%3Ccircle cx='80' cy='30' r='3'/%3E%3Cpath d='M20 75h4v4h2v-4h4v-2h-4v-4h-2v4h-4v2z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  animation: slidePatternReverse 30s linear infinite;
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.pattern-separator-dark {
  width: 100%;
  height: 60px;
  background-color: var(--dt-navy-dark);
  /* Patrón dental blanco (3% opacidad) */
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M25 20c4 0 7 2.5 8 6 1 3.5 1 10-1 14-2-4-5-8-7-8s-5 4-7 8c-2-4-2-10.5-1-14 1-3.5 4-6 8-6zm0 3c-2.2 0-4 1.6-4.7 4-.6 2.4-.6 7.4.7 10.6 1.3-2.6 3.2-5.6 4-5.6.8 0 2.7 3 4 5.6 1.3-3.2 1.3-8.2.7-10.6-.7-2.4-2.5-4-4.7-4z'/%3E%3Cpath d='M75 60l2.5 6.5L84 69l-6.5 2.5L75 78l-2.5-6.5L66 69l6.5-2.5z'/%3E%3Ccircle cx='80' cy='30' r='3'/%3E%3Cpath d='M20 75h4v4h2v-4h4v-2h-4v-4h-2v4h-4v2z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  animation: slidePattern 30s linear infinite;
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1199px) {
  .dt-navbar__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(254, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2.5rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
  }
  
  .dt-navbar__menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .dt-navbar__menu .dt-navbar__link {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dt-navy);
    transition: all 0.3s ease;
  }

  .dt-navbar__menu .dt-navbar__link:hover {
    color: var(--dt-purple);
    transform: scale(1.1);
  }
  
  .dt-navbar__burger {
    display: flex;
    z-index: 1001;
  }

  .bento-card--textiles { grid-column: span 12; }
  .bento-card--kits { grid-column: span 12; }
  .bento-card--bebidas { grid-column: span 6; }
  .bento-card--tecnologia { grid-column: span 6; }
  .bento-card--escritorio { grid-column: span 12; }
  
  .personalizacion-right { min-height: 350px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.75rem; }
  .personalizacion-left { padding: 2.5rem 1.5rem; }
  .bento-card--bebidas { grid-column: span 12; }
  .bento-card--tecnologia { grid-column: span 12; }
  .bento-card--bolsas { flex-direction: column; padding: 2rem; }
  .bento-card--bolsas .bento-card__img { position: relative; right: auto; bottom: auto; margin-top: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ==========================================================================
   SELECTION STYLES
   ========================================================================== */
::selection {
  background-color: var(--dt-magenta, #FA92F6);
  color: var(--dt-cream, #FDF9F5);
}
::-moz-selection {
  background-color: var(--dt-magenta, #FA92F6);
  color: var(--dt-cream, #FDF9F5);
}

/* ==========================================================================
   FORM VALIDATION & REQUIRED FIELDS STYLES
   ========================================================================== */
.premium-input-group input.is-invalid,
.premium-input-group textarea.is-invalid,
.premium-input-group input.parsley-error,
.premium-input-group textarea.parsley-error,
.premium-input-group input:invalid:focus {
  border: 2px solid #ef4444 !important;
  background-color: #fef2f2 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
  animation: shakeInput 0.4s ease-in-out;
}

@keyframes shakeInput {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.parsley-errors-list {
  list-style: none;
  padding: 0.35rem 0.65rem;
  margin: 0.4rem 0 0 0;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 6px;
  color: #991b1b;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

