/* ==========================================================================
   CORE LINK - LANDING PAGE STYLES
   Minimalist, Sophisticated & Hyperlocal Design for Nuevo Querétaro
   Brand Colors: Primary Orange (#FF7A1A) | Secondary Purple (#4B2E83)
   ========================================================================== */

/* --- CSS Variables & Theme Tokens --- */
:root {
  --color-bg: #FFFFFF;
  --color-bg-subtle: #F9FAFC;
  --color-bg-card: #FFFFFF;
  --color-bg-card-hover: #FCFDFF;
  
  --color-primary: #FF7A1A;
  --color-primary-hover: #E86507;
  --color-primary-light: #FFF2E8;
  --color-primary-glow: rgba(255, 122, 26, 0.25);

  --color-purple: #4B2E83;
  --color-purple-hover: #3C226C;
  --color-purple-light: #F2EEF9;
  --color-purple-glow: rgba(75, 46, 131, 0.22);

  --color-text-main: #12141D;
  --color-text-body: #4A5162;
  --color-text-muted: #798293;
  --color-text-light: #9EA8BA;

  --color-border: #E8ECF2;
  --color-border-light: #F0F3F7;
  --color-border-hover: #D5DDE7;

  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20BA5A;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-xs: 0 1px 2px rgba(18, 20, 29, 0.04);
  --shadow-sm: 0 4px 12px rgba(18, 20, 29, 0.05);
  --shadow-md: 0 8px 24px rgba(18, 20, 29, 0.07);
  --shadow-lg: 0 16px 36px rgba(18, 20, 29, 0.09);
  --shadow-glow-orange: 0 8px 25px rgba(255, 122, 26, 0.25);
  --shadow-glow-purple: 0 8px 25px rgba(75, 46, 131, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 24px;
  font-size: 0.98rem;
  line-height: 1.2;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn-md {
  padding: 12px 24px;
  font-size: 0.98rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 18px 36px;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

.btn-outline {
  border: 1.5px solid var(--color-border);
  color: var(--color-text-main);
  background: #FFFFFF;
}

.btn-outline:hover {
  border-color: var(--color-text-main);
  background: var(--color-bg-subtle);
  transform: translateY(-1px);
}

.btn-outline-purple {
  border: 1.5px solid var(--color-purple);
  color: var(--color-purple);
  background: #FFFFFF;
}

.btn-outline-purple:hover {
  background: var(--color-purple-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-purple);
}

.btn-whatsapp-glow {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-glow:hover {
  background: #20BA5A;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-icon-lg {
  width: 22px;
  height: 22px;
}

.btn:hover .btn-icon {
  transform: translate(2px, -2px);
}

/* --- Badges --- */
.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.orange-badge {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.purple-badge {
  background: var(--color-purple-light);
  color: var(--color-purple);
}

.badge-icon {
  width: 14px;
  height: 14px;
}

/* --- Section Structure --- */
.section-block {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section-header {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.12rem;
  color: var(--color-text-body);
  font-weight: 500;
  line-height: 1.6;
}


/* ==================== HEADER / NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon-wrapper {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-chain-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-text-main);
  line-height: 1;
}

.brand-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-top: 2px;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-body);
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-mobile-cta {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--color-text-main);
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none !important;
}


/* ==================== 1. HERO SECTION ==================== */
.hero-section {
  padding-top: 150px;
  padding-bottom: 110px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 122, 26, 0.05) 0%, rgba(75, 46, 131, 0.03) 40%, rgba(255, 255, 255, 0) 70%);
  position: relative;
}

.hero-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.location-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.4);
  animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.pill-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-main);
  letter-spacing: 0.02em;
}

.hero-brand-emblem {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-emblem-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(78, 21, 122, 0.2));
}

.hero-main-title {
  font-size: clamp(3.8rem, 9vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-text-main);
  line-height: 0.95;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 800;
  color: var(--color-purple);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--color-text-body);
  max-width: 680px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.hero-description strong {
  color: var(--color-text-main);
  font-weight: 700;
}

.hero-business-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.biz-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--color-purple);
  background: var(--color-purple-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(75, 46, 131, 0.12);
  transition: all var(--transition-fast);
}

.biz-pill:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xs);
}

.biz-pill i {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==================== CATEGORIES MARQUEE / CAROUSEL ==================== */
.categories-marquee-wrapper {
  margin-top: 56px;
  position: relative;
  width: 100%;
}

.categories-marquee-header {
  margin-bottom: 28px;
  text-align: center;
}

.categories-marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 122, 26, 0.2);
  box-shadow: var(--shadow-xs);
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 16px 0 24px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marquee-infinite 28s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.category-card {
  flex-shrink: 0;
  min-width: 260px;
  width: 260px;
  height: 390px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cat-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.category-card:hover .cat-card-bg {
  transform: scale(1.08);
}

.cat-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 2;
  transition: background var(--transition-fast);
}

.category-card:hover .cat-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.cat-card-content {
  position: relative;
  z-index: 3;
  padding: 24px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.cat-card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cat-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.cat-badge {
  font-size: 0.76rem;
  font-weight: 700;
  color: #FFE6D5;
  background: rgba(255, 122, 26, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 122, 26, 0.5);
  letter-spacing: 0.03em;
}

.cat-card-arrow {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  color: #12141D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cat-card-arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
}

.category-card:hover .cat-card-arrow {
  background: var(--color-primary);
  color: #FFFFFF;
  transform: scale(1.1) translateX(2px);
}


/* ==================== 2. ¿QUÉ ES CORE? ==================== */
.what-is-section {
  background: #FFFFFF;
}

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

.pillar-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-purple));
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 3;
}

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

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

.pillar-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.pillar-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover .pillar-card-img {
  transform: scale(1.08);
}

.pillar-card-body {
  padding: 24px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.pillar-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pillar-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.pillar-card:hover .pillar-icon-badge {
  transform: scale(1.15) rotate(6deg);
}

.pillar-svg-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.2px;
}

.pillar-icon-orange {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.pillar-icon-purple {
  background: var(--color-purple-light);
  color: var(--color-purple);
}

.pillar-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
  color: var(--color-text-main);
  text-align: center;
}

.pillar-text {
  font-size: 0.96rem;
  color: var(--color-text-body);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: center;
}

.pillar-footer-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-purple);
  background: var(--color-purple-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  text-align: center;
}

/* Punchline Card (Full Viewport Width) */
.punchline-card {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 56px;
  margin-bottom: 56px;
  overflow: hidden;
  border-radius: 0;
  border-top: 1.5px solid var(--color-border);
  border-bottom: 1.5px solid var(--color-border);
  border-left: none;
  border-right: none;
  padding: 60px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.punchline-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.punchline-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 10, 30, 0.35) 0%, rgba(35, 15, 55, 0.42) 100%);
  z-index: 2;
}

.punchline-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.punchline-quote-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 10px;
  backdrop-filter: blur(8px);
}

.punchline-core-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.punchline-main {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.punchline-sub {
  display: inline-block;
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(15, 10, 30, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
}


/* ==================== 3. CÓMO FUNCIONA ==================== */
.how-it-works-section {
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.steps-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}

.step-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.step-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.step-icon-bubble {
  width: 40px;
  height: 40px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-bubble i {
  width: 20px;
  height: 20px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--color-text-body);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-purple);
  background: var(--color-purple-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.step-pill i {
  width: 12px;
  height: 12px;
}

.step-arrow-divider {
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arrow-divider i {
  width: 24px;
  height: 24px;
}

/* Deliverable Card */
.deliverable-highlight-card {
  background: #FFFFFF;
  border: 2px solid var(--color-purple);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow-glow-purple);
}

.deliverable-gem {
  width: 68px;
  height: 68px;
  background: var(--color-purple);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deliverable-gem i {
  width: 32px;
  height: 32px;
}

.deliverable-text-side {
  flex-grow: 1;
}

.deliverable-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.deliverable-headline {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 900;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.deliverable-detail {
  font-size: 0.95rem;
  color: var(--color-text-body);
}


/* ==================== 4. POR QUÉ ESTAR EN CORE ==================== */
.why-core-section {
  background: #FFFFFF;
}

.why-subheading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.journey-container {
  position: relative;
  margin-bottom: 60px;
  padding: 20px 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.journey-icon-wrap {
  width: 64px;
  height: 64px;
  background: #FFFFFF;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-xs);
}

.journey-emoji {
  font-size: 1.6rem;
}

.journey-step-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--color-text-main);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-node:hover .journey-icon-wrap {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow-orange);
}

.journey-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 6px;
  line-height: 1.3;
}

.journey-subtext {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Step 7 Highlighted Climax */
.journey-node-hero .journey-icon-wrap.hero-step {
  background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
  border-color: transparent;
  box-shadow: var(--shadow-glow-orange);
  animation: pulse-border 2.5s infinite ease-in-out;
}

@keyframes pulse-border {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.journey-node-hero .journey-step-count {
  background: #FFFFFF;
  color: var(--color-purple);
}

.hero-label {
  color: var(--color-primary) !important;
  font-size: 1.05rem !important;
}

.hero-subtext {
  color: var(--color-purple) !important;
  font-weight: 600;
}

/* Audience Stats Grid */
.audience-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-box {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition-fast);
}

.stat-box:hover {
  transform: translateY(-3px);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-purple);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.stat-num .stat-icon {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}


/* ==================== 5. PRECIO / PLAN ==================== */
.pricing-section {
  background: radial-gradient(circle at 50% 10%, rgba(75, 46, 131, 0.04) 0%, rgba(255, 122, 26, 0.02) 50%, #FFFFFF 100%);
}

.pricing-card-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: #FFFFFF;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-purple) 100%);
}

.pricing-header-block {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border-light);
}

.plan-type-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-purple-light);
  color: var(--color-purple);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.plan-glow {
  width: 6px;
  height: 6px;
  background: var(--color-purple);
  border-radius: 50%;
}

.price-display-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.currency-symbol {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--color-text-main);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.price-guarantee-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-primary);
}

.price-guarantee-note i {
  width: 18px;
  height: 18px;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.feature-card {
  display: flex;
  gap: 18px;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all var(--transition-fast);
}

.feature-card:hover {
  background: #FFFFFF;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feat-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-purple);
}

.feat-icon-bubble i {
  width: 22px;
  height: 22px;
}

.feat-content {
  flex-grow: 1;
}

.feat-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.feat-title {
  font-size: 1.15rem;
  font-weight: 800;
}

.feat-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.orange-tag {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.purple-tag {
  background: var(--color-purple-light);
  color: var(--color-purple);
}

.feat-desc {
  font-size: 0.88rem;
  color: var(--color-text-body);
  line-height: 1.45;
}

/* Pricing Footer Banner */
.pricing-footer-banner {
  background: linear-gradient(135deg, #181423 0%, #2A194C 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #FFFFFF;
}

.pricing-quote-line {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.pricing-quote-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-cta-btn {
  background: var(--color-primary);
  color: #FFFFFF;
}


/* ==================== 6. FAQ ACCORDION ==================== */
.faq-section {
  background: #FFFFFF;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  background: #FFFFFF;
  border-color: var(--color-purple);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text-main);
  text-align: left;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.6;
}


/* ==================== 7. CTA FINAL ==================== */
.cta-final-section {
  padding-bottom: 90px;
}

/* ==================== 8. SERVICIOS ADICIONALES ==================== */
.addons-section {
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border-light);
  padding-top: 100px;
  padding-bottom: 110px;
}

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

.addon-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
}

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

.addon-card.addon-featured {
  border-color: var(--color-purple);
  box-shadow: var(--shadow-glow-purple);
}

.addon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.addon-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.addon-svg-icon {
  width: 26px;
  height: 26px;
  stroke-width: 2.2px;
}

.addon-pill {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.orange-pill {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.purple-pill {
  background: var(--color-purple-light);
  color: var(--color-purple);
}

.addon-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 12px;
  line-height: 1.2;
}

.addon-desc {
  font-size: 0.94rem;
  color: var(--color-text-body);
  line-height: 1.55;
  margin-bottom: 24px;
}

.addon-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.addon-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.4;
}

.feat-check {
  width: 18px;
  height: 18px;
  color: var(--color-whatsapp);
  flex-shrink: 0;
  margin-top: 1px;
}

.addon-action-wrap {
  margin-top: auto;
}

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

.cta-final-card {
  background: #FFFFFF;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-decor-blob-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.cta-decor-blob-2 {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 46, 131, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.cta-final-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-emblem-wrap {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-chain-emblem {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-pretitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.cta-big-word {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 20px;
}

.cta-support-text {
  font-size: 1.08rem;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 36px;
}

.cta-btn-container {
  margin-bottom: 20px;
}

.cta-note-caption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}


/* ==================== FOOTER ==================== */
.main-footer {
  background: #FAFAFC;
  border-top: 1px solid var(--color-border);
  padding-top: 70px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 50px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-chain-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-text-main);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--color-text-body);
  margin-bottom: 12px;
  font-weight: 500;
}

.footer-zones-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-purple);
}

.footer-zones-badge i {
  width: 14px;
  height: 14px;
}

.footer-col-heading {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-size: 0.92rem;
  color: var(--color-text-body);
  font-weight: 500;
}

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

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-badge-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.social-badge-link:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xs);
}

.social-icon {
  width: 22px;
  height: 22px;
  color: var(--color-purple);
}

.social-meta {
  display: flex;
  flex-direction: column;
}

.social-platform {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.social-handle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.footer-bottom-bar {
  border-top: 1px solid var(--color-border-light);
  padding: 24px 0;
  background: #F3F4F8;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}


/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.floating-whatsapp-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-tooltip {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.wa-tooltip.visible,
.floating-whatsapp-container:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-tooltip-header {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.wa-tooltip-text {
  font-size: 0.75rem;
  color: var(--color-text-body);
}

.floating-wa-btn {
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: all var(--transition-smooth);
}

.floating-wa-btn:hover {
  background: var(--color-whatsapp-hover);
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.wa-icon-svg {
  width: 32px;
  height: 32px;
}

.wa-ping-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-whatsapp);
  animation: wa-ping 2.5s infinite cubic-bezier(0, 0, 0.2, 1);
  z-index: -1;
}

@keyframes wa-ping {
  75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}


/* ==================== ANIMATIONS / REVEAL ==================== */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

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


/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* Large Tablets & Small Laptops */
/* Large Tablets & Small Laptops */
@media (max-width: 1024px) {
  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .step-arrow-divider {
    display: none;
  }

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

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

/* Tablets & Mobile */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-link-mobile-cta {
    display: block;
    color: var(--color-primary);
    font-weight: 700;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-actions .btn-outline,
  .nav-actions .nav-cta-btn {
    display: none;
  }

  .category-card {
    min-width: 155px;
    width: 155px;
    padding: 22px 14px;
  }

  .cat-icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

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

  .cat-name {
    font-size: 0.95rem;
  }

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

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

  .pricing-card {
    padding: 32px 20px;
  }

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

  .pricing-footer-banner {
    flex-direction: column;
    text-align: center;
  }

  .deliverable-highlight-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .deliverable-icon-side {
    margin: 0 auto;
  }

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

  .floating-wa-btn {
    width: 52px;
    height: 52px;
  }

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

  .floating-whatsapp-container {
    bottom: 20px;
    right: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

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

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

  .journey-node-hero {
    grid-column: span 1;
  }
}

/* ==================== BRANDS MARQUEE (NEGOCIOS CORE) ==================== */
.core-brands-section {
  padding-top: 60px;
  padding-bottom: 70px;
  background: var(--color-bg-alt);
  border-top: 1.5px solid var(--color-border);
  border-bottom: 1.5px solid var(--color-border);
}

.brands-marquee-container {
  padding: 20px 0;
}

.brands-marquee-track {
  gap: 24px;
  animation-duration: 35s;
}

.brand-card {
  flex-shrink: 0;
  width: 210px;
  height: 115px;
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

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

/* Image logo styling when user places actual <img> tags */
.brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.brand-card:hover .brand-logo-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

/* Placeholder styling when image is not yet set */
.brand-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
}

.brand-placeholder-icon {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
  opacity: 0.85;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-heading);
}

.brand-zone-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

