/* ═══════════════════════════════════════════════════════════
   DAFLOR EGRESADOS — Premium Design System v2.0
   Paleta: Dark Navy + Electric Violet + Lime
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --brand: #7C3AED;
  --brand-light: #9F67FF;
  --brand-dark: #5B21B6;
  --accent: #A3E635;
  --accent-dark: #84CC16;
  --wa: #25D366;
  --ig: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  --tt: #010101;

  /* Dark backgrounds */
  --bg-900: #080C18;
  --bg-800: #0D1023;
  --bg-700: #111527;
  --bg-600: #161C34;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-glass: rgba(255, 255, 255, 0.06);

  /* Text */
  --text-100: #F0F4FF;
  --text-200: #C8D0E7;
  --text-400: #8892A4;
  --text-600: #525A72;

  /* Borders */
  --border: rgba(255, 255, 255, 0.10);
  --border-hover: rgba(255, 255, 255, 0.22);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
  --glow-brand: 0 0 40px rgba(124, 58, 237, 0.35);
  --glow-accent: 0 0 40px rgba(163, 230, 53, 0.30);

  /* Layout */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Typography */
  --font-display: 'Space Grotesk', 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-900);
  color: var(--text-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-800);
}

::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════════
   TOPBAR / NAVBAR
═══════════════════════════════════════════════════════════ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 24, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 300ms ease, box-shadow 300ms ease;
}

.topbar.scrolled {
  background: rgba(8, 12, 24, 0.96);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.topbar__inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-100);
  transition: opacity 200ms;
}

.topbar__brand:hover {
  opacity: 0.85;
}

.topbar__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.5));
}

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

.topbar__nav a {
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-200);
  transition: color 150ms, background 150ms;
  position: relative;
}

.topbar__nav a:hover,
.topbar__nav a.active {
  color: var(--text-100);
  background: rgba(255, 255, 255, 0.07);
}

.topbar__nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.topbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform 150ms, box-shadow 150ms;
}

.topbar__wa-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.topbar__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.topbar__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-200);
  border-radius: 999px;
  transition: transform 200ms, opacity 200ms;
}

/* accent bar removed — replaced by nav design */
.topbar__accent {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-100);
  overflow: hidden;
}

/* Animated background orbs */
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 30%, rgba(124, 58, 237, 0.20) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(163, 230, 53, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
    var(--bg-900);
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}

@keyframes heroBgPulse {
  0% {
    filter: brightness(1);
  }

  100% {
    filter: brightness(1.12);
  }
}

/* Floating particles */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
  background-size: 60px 60px, 100px 100px;
  background-position: 0 0, 30px 40px;
  animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-60px);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 820px;
  margin: 0 auto;
}

.hero__badge-wrap {
  display: block;
  text-align: center;
  margin-bottom: 28px;
}

.hero__badge-inner {
  position: relative;
  display: inline-block;
}


.hero__badge {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.5));
  position: relative;
  z-index: 1;
}


.hero__badge-ring {
  position: absolute;
  inset: -8px;
  border-radius: 36px;
  border: 2px solid rgba(124, 58, 237, 0.4);
  animation: ringPulse 2.5s ease-in-out infinite;
}

.hero__badge-ring2 {
  position: absolute;
  inset: -18px;
  border-radius: 44px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  animation: ringPulse 2.5s ease-in-out infinite 0.8s;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.5;
  }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.35);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #A3E635 0%, #7C3AED 60%, #9F67FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-200);
  max-width: 58ch;
  margin: 0 auto 34px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 0;
}

.hero__stat {
  padding: 18px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.hero__stat:last-child {
  border-right: none;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-100);
  line-height: 1;
}

.hero__stat-num span {
  color: var(--accent);
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-400);
}

.hero__scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--text-400);
  border-bottom: 2px solid var(--text-400);
  transform: rotate(45deg);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: transform 150ms, box-shadow 150ms, background 150ms, border-color 150ms;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.40);
}

.btn--primary:hover {
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.55);
}

.btn--accent {
  background: var(--accent);
  color: #0A0E18;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(163, 230, 53, 0.32);
}

.btn--accent:hover {
  box-shadow: 0 12px 36px rgba(163, 230, 53, 0.45);
}

.btn--light {
  background: var(--accent);
  color: #0A0E18;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(163, 230, 53, 0.30);
}

.btn--light:hover {
  box-shadow: 0 12px 36px rgba(163, 230, 53, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--text-100);
  border-color: var(--border-hover);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  background: var(--bg-glass);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--glass {
  background: var(--bg-glass);
  color: var(--text-100);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.10);
}

.btn--wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn--wa:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.btn--ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b);
  color: #fff;
  box-shadow: 0 8px 24px rgba(221, 42, 123, 0.35);
}

.btn--ig:hover {
  box-shadow: 0 12px 32px rgba(221, 42, 123, 0.5);
}

.btn--tt {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  height: 54px;
  padding: 0 32px;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS — General
═══════════════════════════════════════════════════════════ */

.section {
  padding: 80px 0;
  background: var(--bg-800);
}

.section--soft {
  background: var(--bg-700);
}

.section--dark {
  background: var(--bg-900);
}

.section__head {
  text-align: center;
  margin-bottom: 52px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 14px;
}

.section__label::before,
.section__label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--brand-light);
  opacity: 0.5;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-100);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section__head h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__head p {
  color: var(--text-400);
  font-size: 1.05rem;
  max-width: 55ch;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════════════ */

.statsStrip {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand-light) 100%);
  padding: 44px 0;
}

.statsStrip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.statsStrip__item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.20);
}

.statsStrip__item:last-child {
  border-right: none;
}

.statsStrip__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.statsStrip__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

/* ═══════════════════════════════════════════════════════════
   GRID PROMOS
═══════════════════════════════════════════════════════════ */

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

.tile {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}

.tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--glow-brand);
  border-color: rgba(124, 58, 237, 0.4);
}

.tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-700);
  transition: transform 300ms ease;
}

.tile:hover img {
  transform: scale(1.04);
}

.tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(124, 58, 237, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 250ms;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.tile:hover .tile__overlay {
  opacity: 1;
}

.tile__overlay-text {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   CAROUSEL (Modelos)
═══════════════════════════════════════════════════════════ */

.carousel {
  position: relative;
  margin-top: 10px;
}

.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(100%, calc((100% - 20px) / 2));
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.carousel__slide {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 200ms, box-shadow 200ms;
}

.carousel__slide:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-lg);
}

.carousel--modelos .carousel__track {
  grid-auto-columns: min(100%, calc((100% - 20px) / 2));
}

.carousel--modelos .carousel__slide img {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  width: 100%;
  height: auto;
  max-height: min(88vh, 760px);
  background: var(--bg-600);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--border-hover);
  background: rgba(13, 16, 35, 0.85);
  backdrop-filter: blur(12px);
  color: var(--text-100);
  font-size: 22px;
  display: grid;
  place-items: center;
  z-index: 5;
  transition: background 150ms, transform 150ms, border-color 150ms;
}

.carousel__btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-50%) scale(1.08);
}

.carousel__btn--left {
  left: -22px;
}

.carousel__btn--right {
  right: -22px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  transition: background 200ms, width 200ms;
}

.dot.isActive {
  background: var(--brand-light);
  width: 22px;
}

.ctaCard {
  margin: 28px auto 0;
  width: min(680px, 100%);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(12px);
}

.ctaCard p {
  margin: 0;
  color: var(--text-200);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   REELS — Native video
═══════════════════════════════════════════════════════════ */

.reelsFeed {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 0 4px;
}

.reel-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  width: clamp(220px, 26vw, 320px);
  aspect-ratio: 9 / 16;
  border: 1px solid var(--border);
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}

/* animated gradient border on hover */
.reel-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--brand), var(--accent), var(--brand));
  background-size: 300% 300%;
  animation: gradientBorder 4s ease infinite;
  z-index: 0;
  opacity: 0;
  transition: opacity 250ms;
}

.reel-card:hover::before {
  opacity: 1;
}

.reel-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-lg), var(--glow-brand);
}

@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.reel-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.reel-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(transparent, rgba(10, 14, 24, 0.88));
  color: var(--text-200);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.reel-placeholder {
  width: 100%;
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-glass);
  border: 2px dashed var(--border-hover);
  border-radius: var(--radius-md);
  gap: 10px;
}

.reel-placeholder__icon {
  font-size: 3rem;
}

.reel-placeholder__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-100);
}

.reel-placeholder__sub {
  font-size: 0.88rem;
  color: var(--text-400);
  max-width: 50ch;
}

.reel-placeholder__sub code {
  background: var(--bg-glass);
  padding: 2px 6px;
  border-radius: 5px;
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   TIKTOK
═══════════════════════════════════════════════════════════ */

.tiktokRow {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

.tiktokCard {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}

.tiktokCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.20);
}

.tiktokCard__frame {
  background: #000;
}

.tiktokCard__frame--embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(92vh, 700px);
  margin: 0 auto;
  overflow: hidden;
}

.tiktokIframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tiktokCard__frame img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.tiktokCard__meta {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
}

.tiktokHint {
  margin: 16px 0 0;
  text-align: center;
  color: var(--text-400);
  font-size: 0.88rem;
}

.muted {
  margin: 0;
  color: var(--text-400);
  font-size: 0.88rem;
  font-weight: 600;
}

.miniBtn {
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.30);
  color: var(--brand-light);
  font-weight: 700;
  font-size: 0.82rem;
  transition: background 150ms;
}

.miniBtn:hover {
  background: rgba(124, 58, 237, 0.28);
}

.miniBtn--send {
  background: rgba(163, 230, 53, 0.12);
  border-color: rgba(163, 230, 53, 0.30);
  color: var(--accent);
}

.miniBtn--send:hover {
  background: rgba(163, 230, 53, 0.22);
}

/* ═══════════════════════════════════════════════════════════
   INSTAGRAM CAROUSEL
═══════════════════════════════════════════════════════════ */

.igCarousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 58, 237, 0.4) transparent;
}

.igCarousel::-webkit-scrollbar {
  height: 5px;
}

.igCarousel::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.4);
  border-radius: 999px;
}

/* Desktop: 3 columnas */
.igCarousel__item {
  flex: 0 0 calc((min(1140px, 100vw - 48px) - 32px) / 3);
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  min-height: 540px;
  display: flex;
  flex-direction: column;
}

.igCarousel__item iframe {
  flex: 1 1 auto;
  width: 100%;
  min-height: 540px;
  border: none;
  display: block;
}

/* Mobile: 1 tarjeta visible a la vez, scroll horizontal */
@media (max-width: 700px) {
  .igCarousel {
    gap: 12px;
    padding: 6px 4px 16px;
  }

  .igCarousel__item {
    flex: 0 0 min(90vw, 380px);
    min-height: unset;
    max-height: 680px;
  }

  .igCarousel__item iframe {
    min-height: unset;
    height: 640px;
    max-height: 640px;
  }
}

/* ═══════════════════════════════════════════════════════════
   DISEÑADOR DE PRENDAS
═══════════════════════════════════════════════════════════ */

.designer-daflor {
  background: var(--bg-900);
}

.dc-header {
  text-align: center;
  margin-bottom: 48px;
}

.dc-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-100);
  letter-spacing: -0.5px;
}

.dc-sub {
  color: var(--text-400);
  margin-top: 10px;
  font-size: 1rem;
}

.dc-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
  align-items: start;
}

.dc-panel {
  border-radius: var(--radius-xl);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  padding: 24px;
  backdrop-filter: blur(16px);
}

.dc-panel--sticky {
  position: sticky;
  top: 86px;
}

.dc-panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-200);
  margin: 0;
}

.dc-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.preview-area {
  background: var(--bg-800);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  place-items: center;
  min-height: 340px;
}

.svg-container {
  position: relative;
  display: inline-block;
}

.garment-svg {
  display: none;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
}

.garment-svg.active {
  display: block;
}

/* Text overlay */
.text-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.view-layer {
  display: none;
}

.view-layer.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.garment-back-zone {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66%;
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-fit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: scale(var(--back-scale, 1));
  transform-origin: center center;
}

.garment-text-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.garment-text-year {
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.dc-only-frente {
  display: block;
}

.dc-only-espalda {
  display: none;
}

[data-view="espalda"] .dc-only-frente {
  display: none;
}

[data-view="espalda"] .dc-only-espalda {
  display: block;
}

.dc-panel--controls {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Accordion */
.dc-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 200ms;
}

.accordion-item.is-open {
  border-color: rgba(124, 58, 237, 0.40);
  background: rgba(124, 58, 237, 0.04);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  transition: background 150ms;
  border: none;
  background: none;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.04);
}

.accordion-icon {
  color: var(--brand-light);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.accordion-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-200);
  flex: 1;
  text-align: left;
}

.accordion-arrow {
  color: var(--text-400);
  font-size: 0.75rem;
  transition: transform 300ms;
}

.accordion-item.is-open .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0, 0, 1), opacity 0.3s ease;
  opacity: 0;
}

.accordion-item.is-open .accordion-content {
  opacity: 1;
}

.accordion-inner {
  padding: 4px 18px 20px;
}

.accordion-inner h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-600) !important;
  margin: 16px 0 10px;
  font-weight: 700;
}

/* Pills */
.pill-group {
  display: flex;
  gap: 8px;
}

.pill-group--wrap {
  flex-wrap: wrap;
}

.pill-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-200);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms;
  font-family: inherit;
}

.pill-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-hover);
}

.pill-btn.active {
  background: var(--brand) !important;
  color: #fff !important;
  border-color: var(--brand) !important;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.40);
}

/* Inputs dark */
.input-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  color: var(--text-400) !important;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.input-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dc-text-row,
.dc-font-row {
  grid-template-columns: 1fr 1fr;
}

.dc-field-hint {
  font-size: 0.82rem;
  color: var(--text-400);
  margin: 0 0 14px !important;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-100);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.20);
}

select option {
  background: #1a1a2e;
  color: var(--text-100);
}

.styled-select {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input[type="color"].color-picker {
  height: 44px;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  padding: 3px;
}

.dc-colors-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dc-actions {
  margin-top: 20px;
}

.btn-primary.dc-wa {
  background: linear-gradient(135deg, var(--wa) 0%, #1eaa55 100%);
  color: #fff;
  height: 50px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn-primary.dc-wa:hover {
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.dc-help {
  color: var(--text-400) !important;
  font-size: 0.8rem !important;
  text-align: center;
  margin-top: 10px !important;
}

/* Pattern visibility */
.garment-svg .shape-5050,
.garment-svg .shape-7030,
.garment-svg .shape-americana,
.garment-svg .shape-franja {
  visibility: hidden;
  opacity: 0;
}

.garment-pattern-5050 .shape-5050 {
  visibility: visible;
  opacity: 1;
}

.garment-pattern-7030 .shape-7030 {
  visibility: visible;
  opacity: 1;
}

.garment-pattern-americana .shape-americana {
  visibility: visible;
  opacity: 1;
}

.garment-pattern-franja .shape-franja {
  visibility: visible;
  opacity: 1;
}

.garment-svg path,
.garment-svg rect,
.garment-svg polygon {
  transition: fill 0.25s ease, opacity 0.25s ease;
}

/* Back text separado */
.back-fit.is-separado {
  justify-content: space-between !important;
  height: 100% !important;
  width: 100% !important;
  align-items: center;
  transform: none !important;
}

#personaliza.designer-daflor .garment-text-title,
#personaliza.designer-daflor .garment-text-year {
  white-space: nowrap !important;
  max-width: none !important;
  overflow-wrap: normal !important;
}

#personaliza.designer-daflor .back-fit {
  max-width: none !important;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════ */

.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contactCard {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 200ms, border-color 200ms, box-shadow 200ms;
  backdrop-filter: blur(12px);
}

.contactCard:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.contactCard:nth-child(3) {
  grid-column: span 2;
}

.contactCard__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
}

.contactCard__icon--wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.contactCard__icon--ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b);
  box-shadow: 0 8px 20px rgba(221, 42, 123, 0.35);
}

.contactCard__icon--tt {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contactCard__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-100);
}

.contactCard__sub {
  color: var(--text-400);
  font-weight: 600;
  font-size: 0.88rem;
}

/* Contact Form */
.message {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  gap: 16px;
  backdrop-filter: blur(12px);
}

.message__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-100);
  margin-bottom: 4px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-400);
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS / RESEÑAS
═══════════════════════════════════════════════════════════ */

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

.reviewCard {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: grid;
  gap: 12px;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
  backdrop-filter: blur(12px);
  position: relative;
}

.reviewCard::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4rem;
  color: rgba(124, 58, 237, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 900;
}

.reviewCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124, 58, 237, 0.30);
}

.reviewCard__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.reviewCard__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-100);
  margin: 0;
}

.reviewCard__meta {
  font-size: 0.78rem;
  color: var(--text-400);
  margin-top: 2px;
}

.reviewCard__stars {
  color: #FBBF24;
  font-size: 0.9rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.reviewCard__text {
  font-size: 0.88rem;
  color: var(--text-200);
  line-height: 1.65;
  margin: 0;
}

.reviews__actions {
  text-align: center;
  margin-top: 32px;
}

.reviews__empty {
  padding: 32px;
  text-align: center;
  color: var(--text-400);
  background: var(--bg-glass);
  border-radius: var(--radius-md);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */

.footer {
  background: var(--bg-900);
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.4));
}

.footer__tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-100);
}

.footer__desc {
  color: var(--text-400);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 36ch;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-200);
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: background 150ms, border-color 150ms, color 150ms;
}

.footer__social-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-400);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footerLink {
  color: var(--text-200);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 150ms;
}

.footerLink:hover {
  color: var(--accent);
}

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

.footer__copyright {
  margin: 0;
  color: var(--text-600);
  font-size: 0.82rem;
  font-weight: 500;
}

.footer__map {
  margin-top: 40px;
}

.footer__map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: var(--radius-md);
  filter: grayscale(0.4) invert(0.85) hue-rotate(180deg);
  opacity: 0.75;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUBBLE
═══════════════════════════════════════════════════════════ */

.wa-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-bubble__btn {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  font-size: 1.65rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50);
  transition: transform 200ms, box-shadow 200ms;
  border: 3px solid rgba(255, 255, 255, 0.30);
  animation: waPulse 2.8s ease-in-out infinite;
}

.wa-bubble__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.65);
  animation: none;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.wa-bubble__tooltip {
  background: rgba(13, 16, 35, 0.92);
  border: 1px solid var(--border);
  color: var(--text-100);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  backdrop-filter: blur(12px);
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 200ms, transform 200ms;
}

.wa-bubble:hover .wa-bubble__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════════════════════════ */

@media (max-width: 860px) {
  .topbar__nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(8, 12, 24, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms;
    pointer-events: none;
  }

  .topbar__nav.isOpen {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .topbar__nav a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .topbar__toggle {
    display: flex;
  }

  .topbar__cta .topbar__wa-btn span {
    display: none;
  }

  .topbar__cta .topbar__wa-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablets & Mobile
═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .statsStrip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statsStrip__item:nth-child(2) {
    border-right: none;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .dc-layout {
    grid-template-columns: 1fr;
  }

  .dc-panel--sticky {
    position: static;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .hero h1 {
    letter-spacing: -0.5px;
  }

  .hero__stat {
    padding: 14px 20px;
  }

  .hero__stat-num {
    font-size: 1.6rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .contact__cards {
    grid-template-columns: 1fr;
  }

  .contactCard:nth-child(3) {
    grid-column: span 1;
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .carousel__btn--left {
    left: -8px;
  }

  .carousel__btn--right {
    right: -8px;
  }

  .statsStrip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .dc-text-row,
  .dc-font-row {
    grid-template-columns: 1fr;
  }

  .reelsFeed {
    flex-direction: column;
    align-items: center;
  }

  .reel-card {
    width: min(92vw, 340px);
  }

  .wa-bubble {
    bottom: 20px;
    right: 20px;
  }

  .wa-bubble__btn {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hero__stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    max-width: 260px;
  }

  .hero__stat:last-child {
    border-bottom: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
═══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1), transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}