/* ============================================
   LEVELUPERU — Design System
   Stack: Brutalist-Modern + Glassmorphism
   Palette: Yellow #FFE600 · Black #0A0A0A · White
   ============================================ */

/* ─── RESET & BASE ─────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #FFE600;
  --yellow-dark: #D4BF00;
  --yellow-light: #FFF176;
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-mid: #1A1A1A;
  --gray-900: #222222;
  --gray-800: #333333;
  --gray-600: #555555;
  --gray-400: #888888;
  --gray-200: #CCCCCC;
  --white: #FFFFFF;
  --green: #00E676;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-ui: 'Inter', sans-serif;

  --nav-h: 72px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-yellow: 0 0 40px rgba(255, 230, 0, 0.3);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 3px;
}

/* ─── CURSOR ────────────────────────────────── */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 230, 0, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}

.cursor.hover {
  width: 48px;
  height: 48px;
  background: rgba(255, 230, 0, 0.2);
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
  opacity: 0;
}

/* ─── LOADER ────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo img {
  width: 80px;
  height: 80px;
  animation: logoPulse 1s ease-in-out infinite;
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray-400);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.dots {
  animation: dotBlink 1.2s infinite;
}

@keyframes dotBlink {

  0%,
  20% {
    opacity: 1
  }

  40% {
    opacity: 0.2
  }

  70% {
    opacity: 1
  }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--gray-800);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--yellow);
  width: 0;
  border-radius: 2px;
  transition: width 0.05s linear;
}

/* ─── NAVBAR ────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 230, 0, 0.15);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--yellow);
  transition: left 0.3s ease, right 0.3s ease;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  left: 0.85rem;
  right: 0.85rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-nav {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--yellow-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.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);
}

/* ─── BTN GLOBAL ────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

.btn-primary svg {
  transition: transform var(--transition);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-primary--large {
  font-size: 1.125rem;
  padding: 1.1rem 2.5rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: border-color var(--transition), background var(--transition);
}

.btn-secondary:hover {
  border-color: var(--yellow);
  background: rgba(255, 230, 0, 0.05);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: border-color var(--transition), color var(--transition);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ─── SECTION COMMON ────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header--light {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 230, 0, 0.3);
  border-radius: 100px;
}

.section-tag--dark {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--white);
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.7);
}

.accent {
  color: var(--yellow);
}

/* ─── HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 230, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 230, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  border: 1px solid var(--gray-800);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
  max-width: 100%;
  flex-wrap: wrap;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 6px var(--green);
  }

  50% {
    box-shadow: 0 0 18px var(--green);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
}

.hero-line:nth-child(1) {
  animation-delay: 0.4s;
}

.hero-line:nth-child(2) {
  animation-delay: 0.55s;
}

.hero-line:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-line:nth-child(4) {
  animation-delay: 0.85s;
}

.hero-line-accent {
  color: var(--yellow);
  overflow-wrap: break-word;
  word-break: break-all;
  max-width: 100%;
}

.hero-line-outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.typewriter {
  display: inline-block;
  border-right: 3px solid var(--yellow);
  padding-right: 4px;
  animation: blink 0.7s step-end infinite;
  min-width: 2px;
}

@keyframes blink {

  from,
  to {
    border-color: var(--yellow);
  }

  50% {
    border-color: transparent;
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-400);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 1s forwards;
}

.hero-subtitle strong {
  color: var(--white);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 1.1s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 1.3s forwards;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-800);
  flex-shrink: 0;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gray-600);
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gray-600), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {

  0%,
  100% {
    height: 60px;
    opacity: 1;
  }

  50% {
    height: 30px;
    opacity: 0.4;
  }
}

/* ─── MARQUEE STRIP ─────────────────────────── */
.marquee-strip {
  background: var(--yellow);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee-track .sep {
  color: var(--black);
  opacity: 0.4;
  font-size: 0.6rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* ─── CLIENTS SPLIT ─────────────────────────── */
.clients-split {
  padding: 8rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.split-header {
  text-align: center;
  margin-bottom: 4rem;
}

.split-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
}

.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .split-cards {
    grid-template-columns: 1fr;
  }
}

.split-card {
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  cursor: default;
}

.split-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.split-card-inner {
  position: relative;
  z-index: 2;
}

.split-card--pyme {
  background: var(--yellow);
  color: var(--black);
}

.split-card--pyme::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
}

.split-card--enterprise {
  background: var(--black-mid);
  border: 1px solid var(--gray-800);
  color: var(--white);
}

.split-card--enterprise::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 230, 0, 0.03);
  border-radius: 50%;
}

.split-card-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.split-card-tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.split-card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.split-card-text {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.split-card--pyme .split-card-text strong {
  opacity: 1;
  font-weight: 700;
}

.split-card--enterprise .split-card-text strong {
  color: var(--yellow);
}

.split-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.split-card-list li {
  font-size: 0.9rem;
  font-weight: 500;
}

.split-cta {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.split-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.split-cta--dark {
  background: var(--yellow);
  color: var(--black);
}

/* ─── SERVICIOS BENTO GRID ──────────────────── */
.servicios {
  padding: 8rem 2rem;
  background: var(--black-soft);
}

.servicios .section-header {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  text-align: center;
}

.bento-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}

.bento-item {
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.bento-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Large items */
.bento-item--large {
  grid-column: span 5;
}

.bento-item--wide {
  grid-column: span 7;
}

.bento-item {
  grid-column: span 4;
}

/* .bento-item--auto uses span 4 defined below */

/* Colors */
.bento-item--yellow {
  background: var(--yellow);
  color: var(--black);
}

.bento-item--dark {
  background: var(--gray-900);
  color: var(--white);
  border: 1px solid var(--gray-800);
}

.bento-item--dark-alt {
  background: var(--black-mid);
  color: var(--white);
  border: 1px solid var(--gray-800);
}

.bento-item--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gray-800);
}

.bento-item--outline:hover {
  border-color: var(--yellow);
  background: rgba(255, 230, 0, 0.04);
}

.bento-item--gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--white);
}

.bento-item--yellow-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 230, 0, 0.3);
}

.bento-item--yellow-outline:hover {
  background: rgba(255, 230, 0, 0.08);
  border-color: var(--yellow);
}

.bento-item--brand {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-item--factura {
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 100%);
  color: var(--white);
  border: 1px solid rgba(0, 230, 118, 0.15);
  grid-column: span 5;
}

.bento-item--auto {
  grid-column: span 4;
}

.bento-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bento-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.bento-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.7;
}

.bento-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  margin-top: 0.75rem;
  letter-spacing: 0.5px;
}

.bento-item--yellow .bento-tag {
  background: rgba(0, 0, 0, 0.12);
}

.bento-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.3;
  align-self: flex-end;
  transition: opacity var(--transition), transform var(--transition);
}

.bento-item:hover .bento-arrow {
  opacity: 1;
  transform: translate(4px, -4px);
}

.bento-brand-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 1px;
}

.bento-brand-badge--green {
  background: var(--green);
  color: var(--black);
}

.ads-logos {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ads-logos span {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ─── HOSTING ───────────────────────────────── */
.hosting {
  padding: 8rem 2rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hosting-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 18vw;
  font-weight: 900;
  color: rgba(255, 230, 0, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -10px;
}

.hosting .section-header {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.hosting-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hosting-card {
  background: var(--black-mid);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.hosting-card--domain {
  border-color: rgba(255, 230, 0, 0.2);
}

.hosting-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hosting-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hosting-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.domain-search {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.domain-input {
  flex: 1;
  background: var(--black);
  border: 1.5px solid var(--gray-800);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.domain-input:focus {
  border-color: var(--yellow);
}

.domain-input::placeholder {
  color: var(--gray-600);
}

.domain-btn {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
  white-space: nowrap;
}

.domain-btn:hover {
  transform: translateY(-1px);
  background: var(--yellow-light);
}

.domain-result {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.domain-result.available {
  color: var(--green);
}

.domain-result.contact {
  color: var(--yellow);
}

.domain-note {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.hosting-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .hosting-plans {
    grid-template-columns: 1fr;
  }
}

.hosting-plan {
  background: var(--black-mid);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hosting-plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.hosting-plan--featured {
  border-color: var(--yellow);
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.06) 0%, var(--black-mid) 100%);
  box-shadow: 0 0 40px rgba(255, 230, 0, 0.1);
}

.plan-badge {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}

.plan-badge--featured {
  color: var(--yellow);
}

.plan-price {}

.plan-price span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--yellow);
}

.plan-price {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.plan-features li {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.plan-features li::before {
  content: '';
  margin-right: 0.25rem;
}

.plan-btn {
  display: block;
  text-align: center;
  background: var(--black);
  border: 1.5px solid var(--gray-800);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.plan-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.plan-btn--featured {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.plan-btn--featured:hover {
  background: var(--yellow-light);
  color: var(--black);
}

/* ─── PAQUETES ──────────────────────────────── */
.paquetes {
  padding: 8rem 2rem;
  background: var(--black-soft);
}

.paquetes .section-header {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  text-align: center;
}

.packs-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

.pack {
  background: var(--black-mid);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.pack:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pack--featured {
  border-color: var(--yellow);
  background: linear-gradient(160deg, rgba(255, 230, 0, 0.07) 0%, var(--black-mid) 60%);
  box-shadow: 0 0 60px rgba(255, 230, 0, 0.12);
  transform: scale(1.03);
}

.pack--featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.pack-popular {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 1px;
}

.pack-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pack-emoji {
  font-size: 2.5rem;
}

.pack-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pack-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.pack-price {
  display: flex;
  flex-direction: column;
}

.pack-price-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.pack-price-note {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}

.pack-includes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pack-includes li {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.4;
}

.pack-btn {
  display: block;
  text-align: center;
  background: var(--black);
  border: 1.5px solid var(--gray-800);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.pack-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-1px);
}

.pack-btn--featured {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.pack-btn--featured:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

.packs-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.packs-note a {
  color: var(--yellow);
  font-weight: 600;
  transition: opacity var(--transition);
}

.packs-note a:hover {
  opacity: 0.8;
}

/* ─── PROCESO ───────────────────────────────── */
.proceso {
  padding: 8rem 2rem;
  background: var(--black);
}

.proceso .section-header {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
  text-align: center;
}

.proceso-timeline {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.proceso-timeline::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gray-800);
}

@media (max-width: 768px) {
  .proceso-timeline {
    grid-template-columns: 1fr;
  }

  .proceso-timeline::before {
    display: none;
  }
}

.proceso-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.paso-number {
  width: 56px;
  height: 56px;
  background: var(--black);
  border: 1.5px solid var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  transition: all var(--transition-slow);
}

.proceso-step.active .paso-number,
.proceso-step:hover .paso-number {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255, 230, 0, 0.08);
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

.paso-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.paso-content p {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ─── PARTNERS ──────────────────────────────── */
.partners {
  padding: 6rem 2rem;
  background: var(--black-soft);
  overflow: hidden;
}

.partners .section-header {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  text-align: center;
}

.partners-marquee {
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partner-item {
  flex-shrink: 0;
}

.partner-logo-box {
  background: var(--black-mid);
  border: 1px solid var(--gray-800);
  color: var(--gray-400);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.partner-logo-box:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255, 230, 0, 0.04);
}

/* ─── TESTIMONIOS ───────────────────────────── */
.testimonios {
  padding: 8rem 2rem;
  background: var(--black);
}

.testimonios .section-header {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  text-align: center;
}

.testimonios-slider {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  min-height: 280px;
}

.testimonio-card {
  background: var(--black-mid);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeIn 0.5s ease;
}

.testimonio-card.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonio-stars {
  color: var(--yellow);
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.testimonio-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-200);
  font-style: italic;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonio-avatar {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonio-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonio-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 2px;
  display: block;
}

.testimonios-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-800);
  transition: background var(--transition), width var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--yellow);
  width: 24px;
  border-radius: 4px;
}

/* ─── SUBMARCAS ─────────────────────────────── */
.submarcas {
  padding: 8rem 2rem;
  background: var(--black-soft);
}

.submarcas .section-header {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  text-align: center;
}

.submarcas-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .submarcas-grid {
    grid-template-columns: 1fr;
  }
}

.submarca-card {
  background: var(--black-mid);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform var(--transition), border-color var(--transition);
}

.submarca-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 230, 0, 0.3);
}

.submarca-card--featured {
  border-color: rgba(0, 230, 118, 0.2);
}

.submarca-card--featured:hover {
  border-color: var(--green);
}

.submarca-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.submarca-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.submarca-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.submarca-link {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow);
  transition: opacity var(--transition);
}

.submarca-link:hover {
  opacity: 0.7;
}

/* ─── CTA FINAL ─────────────────────────────── */
.cta-final {
  padding: 10rem 2rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 230, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--gray-400);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── FOOTER ────────────────────────────────── */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--gray-800);
  padding: 5rem 2rem 2rem;
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--gray-800);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--black-mid);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-400);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255, 230, 0, 0.05);
}

.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-group a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-links-group a:hover {
  color: var(--yellow);
}

.footer-links-group span {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--gray-600);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--yellow);
}

/* ─── WHATSAPP FLOAT ────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 1200px) {
  .bento-item--large {
    grid-column: span 6;
  }

  .bento-item--wide {
    grid-column: span 6;
  }

  .bento-item {
    grid-column: span 4;
  }

  .bento-item--factura {
    grid-column: span 6;
  }

  .bento-item--auto {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-item,
  .bento-item--large,
  .bento-item--wide,
  .bento-item--factura,
  .bento-item--auto {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-bottom: 1px solid var(--gray-800);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }

  .nav-links.open .nav-link {
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--gray-800);
  }

  .hamburger {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  .packs-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .clients-split {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .footer-top {
    gap: 2rem;
  }

  .pack--featured {
    transform: none;
  }

  .pack--featured:hover {
    transform: translateY(-10px);
  }

  .proceso-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .proceso-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .paso-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .hosting-plans {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* Hero title — reduce clamp minimum so email fits */
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 7rem);
    letter-spacing: -0.025em;
  }

  /* Hero badge — allow wrapping on very small screens */
  .hero-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    justify-content: center;
    text-align: center;
  }

  /* Hero CTAs — full-width stacked buttons */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    justify-content: center;
    text-align: center;
  }

  /* CTA section title — reduce clamp minimum */
  .cta-title {
    font-size: clamp(1.9rem, 8vw, 5rem);
    letter-spacing: -0.02em;
  }

  /* Stat numbers — smaller on mobile */
  .stat-number {
    font-size: 2rem;
  }

  /* Section tags — tighter tracking */
  .section-tag {
    letter-spacing: 1.5px;
  }

  /* Domain search .com suffix — smaller on mobile */
  .dhs-tld {
    font-size: 15px;
    padding: 0 10px 0 2px;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Packs — single column on phones */
  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  /* Custom cursor — hide on touch devices */
  body { cursor: auto; }
  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* ─── REVEAL ANIMATIONS ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── NAV PANEL BUTTON ──────────────────────── */
/* Nav link panel — visible sólo en mobile (dentro del menú hamburguesa) */
.nav-link--panel {
  color: var(--yellow) !important;
  font-weight: 700 !important;
}

.nav-link--panel::after {
  background: var(--yellow);
}

/* Solo ocultar el li en desktop (el btn-nav-panel cubre esa función) */
@media (min-width: 769px) {
  .nav-links li:has(.nav-link--panel) {
    display: none;
  }
}

.btn-nav-panel {
  background: transparent;
  color: var(--gray-400);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-800);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-nav-panel:hover {
  color: var(--yellow);
  border-color: var(--yellow);
  background: rgba(255, 230, 0, 0.05);
}

@media (max-width: 768px) {
  .btn-nav-panel {
    display: none;
  }
}

/* ─── PACK COMPRA ONLINE ────────────────────── */
.pack-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.pack-btn-secondary {
  display: block;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--gray-600);
  padding: 0.3rem;
  transition: color var(--transition);
}

.pack-btn-secondary:hover {
  color: var(--yellow);
}

/* ─── PLAN COMPRA ONLINE ────────────────────── */
.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-btn-secondary {
  display: block;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gray-600);
  transition: color var(--transition);
}

.plan-btn-secondary:hover {
  color: var(--yellow);
}

/* ─── RESPONSIVE FIXES ADICIONALES ─────────── */

/* Nav muy pequeño */
@media (max-width: 400px) {
  .nav-container {
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-img {
    width: 28px;
    height: 28px;
  }
}

/* Bento grid — 1 columna en móvil pequeño */
@media (max-width: 480px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item,
  .bento-item--large,
  .bento-item--wide,
  .bento-item--factura,
  .bento-item--auto {
    grid-column: span 1;
  }
}

/* Secciones — reducir padding vertical en mobile */
@media (max-width: 480px) {
  .clients-split,
  .servicios,
  .hosting,
  .paquetes,
  .proceso,
  .partners,
  .testimonios,
  .submarcas {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .cta-final {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  /* Título split — reducir letter-spacing en mobile */
  .split-title {
    letter-spacing: -0.015em;
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  /* Cards con menos padding */
  .split-card {
    padding: 2rem;
  }

  .pack {
    padding: 1.75rem;
  }

  /* Pack grid sin max-width en mobile */
  .packs-grid {
    max-width: 100%;
  }

  /* Hosting card */
  .hosting-card {
    padding: 1.75rem;
  }

  /* Domain search — stack vertical */
  .domain-search {
    flex-direction: column;
  }

  .domain-btn {
    width: 100%;
    text-align: center;
  }

  /* Footer padding */
  .footer {
    padding-top: 3rem;
  }

  /* Proceso steps padding */
  .proceso-step {
    padding: 0 0.5rem;
  }

  /* CTA title letter-spacing */
  .cta-title {
    letter-spacing: -0.02em;
  }

  /* Testimonio card padding */
  .testimonio-card {
    padding: 1.5rem;
  }

  /* Hero */
  .hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title {
    letter-spacing: -0.02em;
  }

  /* Packs grid en mobile: ancho completo */
  .packs-grid {
    padding: 0;
  }

  /* Submarca cards */
  .submarca-card {
    padding: 1.75rem;
  }
}

/* Tablet: bento 2 columnas bien controlado */
@media (min-width: 481px) and (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
  }
}

/* Asegurar que ningún elemento desborde el viewport */
@media (max-width: 768px) {
  .hero-subtitle {
    max-width: 100%;
  }

  .section-subtitle {
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .nav-links.open {
    width: 100vw;
    left: 0;
    right: 0;
  }
}

/* Fix pack featured en desktop tablet */
@media (max-width: 1024px) {
  .pack--featured {
    order: -1;
  }
}

/* ── Tablet: proceso 3 columns + cursor hide ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .proceso-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .cursor,
  .cursor-follower {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ════════════════════════════════════════
   DOMAIN SEARCH ENHANCED
   ════════════════════════════════════════ */
.domain-input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
}
.domain-input-wrapper .domain-input {
  border: none;
  border-radius: 0;
  flex: 1;
  background: transparent;
}
.domain-tld {
  padding: 0 14px;
  color: var(--yellow);
  font-weight: 800;
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.domain-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 110px;
}
.domain-btn-loader svg {
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Result states */
.domain-result { transition: all 0.3s ease; }
.dr-available, .dr-taken {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
}
.dr-available {
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.dr-taken {
  background: rgba(255, 90, 90, 0.08);
  border: 1px solid rgba(255, 90, 90, 0.25);
}
.dr-info { display: flex; flex-direction: column; gap: 4px; }
.dr-price-action { display: flex; align-items: center; gap: 12px; }
.dr-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 4px;
}
.dr-badge--available { background: rgba(0, 230, 118, 0.2); color: #00e676; }
.dr-badge--taken { background: rgba(255, 90, 90, 0.2); color: #ff5a5a; }
.dr-domain { font-size: 16px; color: #fff; }
.dr-price { font-size: 18px; font-weight: 800; color: var(--yellow); }
.dr-price small { font-size: 12px; font-weight: 400; color: #aaa; }
.dr-buy-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  font-family: 'Space Grotesk', sans-serif;
}
.dr-buy-btn:hover { transform: scale(1.04); opacity: 0.92; }
.dr-suggestion { font-size: 12px; color: #999; margin: 4px 0 0; }
.domain-result.error { color: #ff9800; font-size: 13px; padding: 8px 0; }

/* ════════════════════════════════════════
   DOMAIN PURCHASE MODAL
   ════════════════════════════════════════ */
.domain-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.domain-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.domain-modal {
  background: #111318;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s ease;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}
.domain-modal-overlay.active .domain-modal {
  transform: translateY(0) scale(1);
}

/* Modal header */
.dmodal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dmodal-icon { font-size: 28px; }
.dmodal-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  font-family: 'Syne', sans-serif;
  margin: 0;
  flex: 1;
  padding: 0 12px;
}
.dmodal-close, .dmodal-back {
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
}
.dmodal-close:hover, .dmodal-back:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* Domain display */
.dmodal-domain-display {
  background: rgba(255, 230, 0, 0.08);
  border: 2px solid rgba(255, 230, 0, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
  text-align: center;
  letter-spacing: 0.5px;
  font-family: 'Syne', sans-serif;
  margin-bottom: 20px;
  word-break: break-all;
}
.dmodal-domain-mini {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Price row */
.dmodal-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 20px;
}
.dmodal-price-label { color: #aaa; font-size: 14px; }
.dmodal-price-amount { font-size: 24px; font-weight: 800; color: #fff; }

/* Features */
.dmodal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.dmodal-feature {
  font-size: 12px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Buttons */
.dmodal-btn-primary {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: transform 0.15s, opacity 0.15s;
  text-align: center;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
}
.dmodal-btn-primary:hover { transform: translateY(-1px); opacity: 0.92; }
.dmodal-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.dmodal-btn-secondary {
  width: 100%;
  background: transparent;
  color: #aaa;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 10px;
  transition: color 0.15s, border-color 0.15s;
}
.dmodal-btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.25); }

/* Form fields */
.dmodal-field { margin-bottom: 16px; }
.dmodal-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.dmodal-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.dmodal-input:focus {
  outline: none;
  border-color: rgba(255, 230, 0, 0.5);
  background: rgba(255,255,255,0.07);
}
.dmodal-error {
  background: rgba(255, 90, 90, 0.1);
  border: 1px solid rgba(255, 90, 90, 0.3);
  color: #ff8080;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 12px;
}
.dmodal-disclaimer {
  font-size: 11px;
  color: #555;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Success state */
.dmodal-success-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 16px;
}
.dmodal-success-text {
  color: #aaa;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
}
.dmodal-success-steps { margin-bottom: 24px; }
.dmodal-success-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #ccc;
}
.dss-num {
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 11px;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   DOMAIN HERO — GoDaddy-style above-the-fold search
   ============================================================ */
.domain-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,230,0,0.07) 0%, transparent 70%);
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.domain-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.domain-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
.domain-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,230,0,0.08);
  border: 1px solid rgba(255,230,0,0.2);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.domain-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}
.domain-hero-title .accent { color: var(--yellow); }
.domain-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.55);
  margin: 0 0 42px;
  line-height: 1.6;
}
.domain-hero-search {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 640px;
  margin: 0 auto 20px;
}
.domain-hero-search:focus-within {
  border-color: rgba(255,230,0,0.5);
  box-shadow: 0 0 0 4px rgba(255,230,0,0.08);
}
.dhs-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
}
.dhs-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  padding: 20px 0 20px 22px;
  line-height: 1;
}
.dhs-input::placeholder { color: rgba(255,255,255,0.3); font-weight: 400; }
.dhs-tld {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 700;
  padding: 0 18px 0 4px;
  line-height: 1;
}
.dhs-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  padding: 0 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, opacity 0.15s;
  white-space: nowrap;
  border-radius: 0 16px 16px 0;
}
.dhs-btn:hover { background: #ffe600cc; }
.dhs-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.dhs-result {
  min-height: 56px;
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: left;
}
.domain-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.dtr-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}
.dtr-item svg { color: var(--yellow); opacity: 0.8; }
@media (max-width: 600px) {
  .domain-hero { min-height: 100svh; padding: 100px 16px 60px; }
  .domain-hero-search { border-radius: 14px; }
  .dhs-btn { padding: 0 18px; font-size: 14px; border-radius: 0 12px 12px 0; }
  .dhs-input { font-size: 16px; padding: 18px 0 18px 16px; }
  .domain-trust-row { gap: 14px; }
}

/* ============================================================
   DOMAIN STATUS BANNER — appears after MP redirect
   ============================================================ */
.domain-status-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.dsb-success { background: #16a34a; color: #fff; }
.dsb-failure { background: #dc2626; color: #fff; }
.dsb-pending { background: #d97706; color: #fff; }

/* ============================================================
   MODAL MP LOADER — step 3 redirect spinner
   ============================================================ */
.dmodal-mp-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
}
.dmodal-mp-loader svg {
  animation: spin-anim 1s linear infinite;
}
@keyframes spin-anim {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   CROSSELL QUIZ SECTION
   ============================================================ */
.crossell-quiz {
  padding: 100px 24px;
  background: var(--black);
  position: relative;
}
.crossell-quiz::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,230,0,0.2), transparent);
}
.cq-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cq-header {
  text-align: center;
  margin-bottom: 56px;
}
.cq-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0.7;
  margin-bottom: 14px;
}
.cq-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 14px;
}
.cq-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.6;
}
.cq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cq-card {
  display: flex;
  flex-direction: column;
  background: #111318;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 24px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.cq-card:hover {
  border-color: rgba(255,230,0,0.3);
  background: #161920;
  transform: translateY(-4px);
}
.cq-card--featured {
  border-color: rgba(255,230,0,0.25);
  background: linear-gradient(160deg, #1a1c10 0%, #111318 100%);
}
.cq-card--featured:hover { border-color: rgba(255,230,0,0.5); }
.cq-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.cq-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.cq-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.cq-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}
.cq-price {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  font-weight: 600;
}
.cq-price strong { color: var(--yellow); font-size: 15px; }
.cq-btn {
  display: block;
  background: rgba(255,230,0,0.08);
  border: 1px solid rgba(255,230,0,0.2);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 10px;
  text-align: center;
  transition: background 0.15s;
  font-family: 'Space Grotesk', sans-serif;
}
.cq-card:hover .cq-btn {
  background: rgba(255,230,0,0.14);
}
.cq-card--featured .cq-btn {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.cq-card--featured:hover .cq-btn { background: #ffe600cc; }
@media (max-width: 960px) {
  .cq-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .crossell-quiz { padding: 70px 16px; }
  .cq-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO INLINE ACCENT (for "empresa.com" inline)
══════════════════════════════════════════════════════════════ */
.hero-inline-accent {
  color: var(--yellow);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   TRANSFORMATION STRIP (Before / After)
══════════════════════════════════════════════════════════════ */
.transformation-strip {
  background: #0e1015;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 64px 24px;
}
.ts-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.ts-side {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 32px;
}
.ts-before { border-color: rgba(239,68,68,0.2); }
.ts-after  { border-color: rgba(34,197,94,0.2); }
.ts-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: 30px;
}
.ts-label--before {
  background: rgba(239,68,68,0.12);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.2);
}
.ts-label--after {
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.2);
}
.ts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ts-before .ts-list li {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 500;
  padding-left: 8px;
  border-left: 2px solid rgba(239,68,68,0.3);
}
.ts-after .ts-list li {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  padding-left: 8px;
  border-left: 2px solid rgba(34,197,94,0.5);
}
.ts-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ts-arrow-wrap {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 0 30px rgba(255,230,0,0.3);
}
.ts-divider-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--yellow);
  opacity: 0.7;
}
@media (max-width: 800px) {
  .ts-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ts-divider {
    flex-direction: row;
    justify-content: center;
  }
  .ts-arrow-wrap svg { transform: rotate(90deg); }
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.2s ease, box-shadow 0.2s;
  pointer-events: all;
  font-family: 'Space Grotesk', sans-serif;
}
.wa-float.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.wa-float:hover {
  box-shadow: 0 6px 32px rgba(37,211,102,0.65);
  transform: translateY(-2px);
}
.wa-float-text { white-space: nowrap; }
@media (max-width: 480px) {
  .wa-float { padding: 14px; border-radius: 50%; }
  .wa-float-text { display: none; }
  .wa-float.visible { transform: translateY(0) scale(1); }
}
