/* ============================================
   BRANDING.CSS — DOCEVEiNTE
   Extraído de styles.css · No modificar
   ============================================ */

* { box-sizing: border-box; }

p {
  font-family: 'Spline Sans', sans-serif;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

body {
  margin: 0;
  padding: 0;
  background: #f1f1f1;
  font-family: 'Spline Sans', sans-serif;
  line-height: 1.6;
  color-scheme: light;
}

html { scroll-behavior: smooth; }

section, div[id] { scroll-margin-top: 80px; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* GRID */
.grid-two-cols   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-three-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-one-col    { display: grid; grid-template-columns: 1fr; gap: 30px; }
.grid-col        { min-width: 0; }

/* SPACING */
.section-spacing        { margin-top: 30px; margin-bottom: 30px; }
.section-spacing-bottom { margin-bottom: 30px; }
.spacing-bottom         { margin-bottom: 30px; }
.card-padding           { padding: 24px; }

/* TEXT */
.text-center { text-align: center; }
.text-muted  { color: #6c757d; }
.lead {
  font-family: 'Spline Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
}

h2 { font-family: 'M PLUS 1', sans-serif; }

/* NAVBAR */
.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background-color: #f5f5f5;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: black;
  font-weight: 600;
  font-size: 24px;
  font-family: 'M PLUS 1', sans-serif;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand img { height: 40px; margin-right: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px; height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 30px; height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translateY(10px); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }

.nav-links {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 20px;
}

.nav-item { margin-left: 15px; }

.nav-link {
  font-family: 'Spline Sans', sans-serif;
  color: #333;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  transition: color 0.3s ease;
}

.nav-link:hover { color: #DA22FF; }

.navbar-text {
  font-family: 'VT323', monospace;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

/* HERO — JUMBOTRON */
.jumbotron {
  background: linear-gradient(135deg, #FF6FD8, #3813C2);
  background-size: 200% 200%;
  animation: gradientAnimation 15s ease infinite;
  padding: 80px 0;
  margin-top: 56px;
  margin-bottom: 0;
}

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

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 3px;
  color: #FDEB71;
  margin-bottom: 16px;
  opacity: 0.85;
}

.display-3 {
  color: #FDEB71;
  font-weight: 900;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.display-4 {
  color: #FDEB71;
  font-family: 'Spline Sans', sans-serif;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 50px;
}

.hero-highlight {
  color: #FDEB71;
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: #FDEB71;
  border-radius: 2px;
  animation: underline-grow 1s ease 0.5s both;
}

@keyframes underline-grow {
  from { width: 0; }
  to   { width: 100%; }
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.hero-bullets li {
  font-family: 'Spline Sans', sans-serif;
  color: rgba(253,235,113,0.9);
  font-size: 15px;
  padding: 6px 0;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-grad {
  background-image: linear-gradient(to right, #DA22FF 0%, #9733EE 51%, #DA22FF 100%);
  margin: 10px;
  padding: 15px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 18px;
  box-shadow: 0 0 20px #eee;
  border-radius: 50px;
  border: none;
  max-width: 260px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-grad:hover {
  background-position: right center;
  color: #FDEB71;
  text-decoration: none;
  box-shadow: 0 0 20px #FDEB71;
}

.btn-grad2 {
  background-image: linear-gradient(to right, #DA22FF 0%, #9733EE 51%, #DA22FF 100%);
  margin: 10px;
  padding: 10px 16px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 12px;
  box-shadow: 0 0 20px #eee;
  border-radius: 50px;
  border: none;
  max-width: 200px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-grad2:hover {
  background-position: right center;
  color: #FDEB71;
  text-decoration: none;
}

.btn-ghost {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 15px;
  color: #FDEB71;
  text-decoration: none;
  border: 2px solid rgba(253,235,113,0.5);
  padding: 12px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-ghost:hover {
  background: rgba(253,235,113,0.1);
  border-color: #FDEB71;
  text-decoration: none;
  color: #FDEB71;
}

/* SECTION EYEBROW */
.section-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 14px;
  letter-spacing: 3px;
  color: #DA22FF;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title-dark {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 900;
  color: #222;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: 'Spline Sans', sans-serif;
  color: #666;
  font-size: 16px;
  margin-bottom: 48px;
}

/* CARD */
.card {
  position: relative;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.125);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(218,34,255,0.7);
}

.card-tagline {
  font-family: 'VT323', monospace;
  font-size: 1.6rem;
  color: #9733EE;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 16px 0 4px;
  display: block;
}

.service-description {
  font-family: 'Spline Sans', sans-serif;
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.pricing-row {
  margin-top: 20px;
  align-items: center;
}

.precio {
  font-family: 'Spline Sans', sans-serif;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

/* PROBLEM SECTION */
.problem-section { background: #fff; }
.problem-header  { margin-bottom: 36px; }
.problem-intro   { max-width: 600px; font-size: 15px; margin-top: 12px; }
.problem-grid    { margin-bottom: 32px; }

.problem-card {
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid rgba(218,34,255,0.12);
  background: #fafafa;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.problem-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.problem-card:hover {
  border-color: rgba(218,34,255,0.4);
  background: rgba(218,34,255,0.03);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(218,34,255,0.12);
}

.problem-icon { font-size: 32px; display: block; margin-bottom: 14px; }

.problem-card h3 {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.problem-card p {
  font-family: 'Spline Sans', sans-serif;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.problem-transition {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(218,34,255,0.06), rgba(253,235,113,0.08));
  border-radius: 10px;
  border: 1px solid rgba(218,34,255,0.15);
  margin-bottom: 24px;
}

.problem-transition p {
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  color: #333;
  margin: 0;
}

.problem-cta-wrap { text-align: center; padding-top: 8px; }

/* POSITIONING SECTION */
.positioning-section {
  background: linear-gradient(135deg, #f8f8ff 0%, #fff0ff 100%);
  padding: 80px 0;
  position: relative;
}

.positioning-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.positioning-col { padding: 32px; border-radius: 16px; }

.positioning-col--before {
  background: rgba(100,100,120,0.07);
  border: 1px solid rgba(100,100,120,0.15);
}

.positioning-col--after {
  background: rgba(218,34,255,0.06);
  border: 1px solid rgba(218,34,255,0.25);
}

.positioning-label {
  font-family: 'VT323', monospace;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.label-before { color: #999; }
.label-after  { color: #9733EE; }

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

.positioning-list li {
  font-family: 'Spline Sans', sans-serif;
  color: #aaa;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-decoration: line-through;
}

.positioning-list--after li {
  color: #333;
  text-decoration: none;
  border-bottom-color: rgba(218,34,255,0.1);
  padding-left: 20px;
  position: relative;
}

.positioning-list--after li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #DA22FF;
  font-size: 12px;
}

.positioning-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.positioning-divider-icon {
  font-size: 40px;
  color: #DA22FF;
  opacity: 0.7;
  animation: pulse-arrow 2s ease-in-out infinite;
}

.positioning-statement {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 1.4rem;
  color: #222;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.positioning-statement strong { color: #DA22FF; }

/* METHOD STEPS */
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.method-steps::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #DA22FF, rgba(218,34,255,0.1));
  z-index: 0;
}

.method-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
}

.method-step.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-number {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DA22FF, #9733EE);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'VT323', monospace;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(218,34,255,0.4);
}

.step-content { background: #fff; }

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.step-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.step-content p {
  font-family: 'Spline Sans', sans-serif;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.step-output {
  font-family: 'VT323', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  color: #DA22FF;
  text-transform: uppercase;
  display: block;
}

/* FLOW SECTION */
.flow-section {
  background: linear-gradient(135deg, #f8f8ff 0%, #fff0ff 100%);
  padding: 80px 0;
  overflow-x: auto;
}

.conversion-flow {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(218,34,255,0.15);
  min-width: 130px;
  max-width: 150px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.flow-step:hover {
  transform: translateY(-6px);
  border-color: #DA22FF;
  box-shadow: 0 12px 30px rgba(218,34,255,0.2);
}

.flow-step--highlight {
  background: linear-gradient(135deg, #DA22FF, #9733EE);
  border-color: transparent;
}

.flow-step--highlight .flow-step-label,
.flow-step--highlight .flow-step-desc { color: #fff; }

.flow-step-icon-wrap {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.flow-step-label {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.flow-step-desc {
  font-family: 'Spline Sans', sans-serif;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
}

.flow-connector {
  font-size: 24px;
  color: #DA22FF;
  align-self: center;
  padding: 0 4px;
  animation: pulse-arrow 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-arrow {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50%       { opacity: 1;   transform: translateX(4px); }
}

/* INCLUDES / DELIVERABLES */
.branding-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.branding-service-list li {
  font-family: 'Spline Sans', sans-serif;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  color: #555;
  font-size: 14px;
  margin-bottom: 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.branding-service-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: transparent;
  font-size: 8px;
  transition: all 0.3s ease;
}

.branding-service-list li:hover::before {
  color: #DA22FF;
  transform: translateX(3px);
}

.branding-service-list li:hover {
  background: rgba(218,34,255,0.05);
  color: #333;
  transform: translateX(5px);
  padding-left: 25px;
}

/* BENEFITS */
.benefits-section { background: #fff; }
.benefits-section h2 { margin-bottom: 36px; }
.benefits-grid { margin-top: 16px; }

.benefit-card {
  padding: 28px 20px;
  border-radius: 12px;
  border: 1px solid rgba(218,34,255,0.1);
  background: #fafafa;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(16px);
}

.benefit-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-card:hover {
  border-color: rgba(218,34,255,0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(218,34,255,0.15);
  background: #fff;
}

.benefit-icon-wrap {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}

.benefit-card h3 {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.benefit-card p {
  font-family: 'Spline Sans', sans-serif;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

/* QUALIFICATION */
.qualification-section {
  background: #fff;
  padding: 80px 0;
}

.qualification-grid { gap: 30px; }
.qualification-card { background: #fafafa; }

.qualification-title {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 8px;
}

.qual-icon { display: inline-flex; align-items: center; flex-shrink: 0; }

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

.qualification-list li {
  font-family: 'Spline Sans', sans-serif;
  font-size: 14px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.5;
}

.qualification-list li:last-child { border-bottom: none; }

/* CTA FINAL / COTIZACION */
@keyframes eyebrowContrast {
  0%   { color: #3813C2; }
  25%  { color: #9733EE; }
  50%  { color: #FDEB71; }
  75%  { color: #9733EE; }
  100% { color: #3813C2; }
}

#cotizacion .card {
  background-image: linear-gradient(135deg, #FDEB71 0%, #FF6FD8 50%, #FDEB71 100%) !important;
  background-size: 200% 200% !important;
  background-position: 0% 50%;
  animation: gradientAnimation 15s ease infinite;
  border: none;
  box-shadow: 0 15px 30px rgba(255,111,216,0.4);
  border-radius: 15px;
}

#cotizacion .section-eyebrow {
  animation: eyebrowContrast 15s ease infinite;
  -webkit-text-fill-color: unset;
  background: none;
}



#cotizacion h2 {
  color: #3813C2;
  font-weight: 900;
  font-family: 'M PLUS 1', sans-serif;
  margin-top: 0;
}

#cotizacion .lead {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Spline Sans', sans-serif;
  line-height: 1.8;
}

.form-group { margin-bottom: 15px; }

.form-control {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-family: 'Spline Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 50px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: #DA22FF;
  outline: 0;
  box-shadow: 0 0 5px rgba(218,34,255,0.5);
}

.form-control::placeholder { color: #6c757d; opacity: 1; }

.form-textarea {
  border-radius: 20px !important;
  resize: vertical;
  min-height: 110px;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  padding: 15px 20px;
}

.form-label {
  display: block;
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #3813C2;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-form-submit { width: 100%; margin-top: 10px; max-width: none; display: block; margin: 10px 0; }

.form-footer-note {
  text-align: center;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #9733EE;
  margin-top: 12px;
  margin-bottom: 0;
}


/* ============================================
   FOOTER COMPLETO — igual al index
   ============================================ */

.grid-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.grid-col-footer { min-width: 0; }
.footer-col-brand { grid-column: span 1; }

.footer-professional {
  position: relative;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  overflow: hidden;
}

.footer-professional::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218,34,255,0.1), transparent);
  animation: footerShine 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes footerShine {
  0%, 100% { left: -100%; }
  50%       { left: 100%; }
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 60px 0 40px;
}

.footer-brand { margin-bottom: 30px; }

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(253,235,113,0.3));
  transition: filter 0.3s ease;
}

.footer-logo:hover {
  filter: drop-shadow(0 0 15px rgba(253,235,113,0.6));
}

.footer-brand h5 {
  color: #FDEB71;
  font-family: 'VT323', monospace;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(253,235,113,0.3);
}

.footer-description {
  font-family: 'Spline Sans', sans-serif;
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px; height: 45px;
  background: linear-gradient(135deg, rgba(218,34,255,0.2), rgba(151,51,238,0.2));
  border: 1px solid rgba(218,34,255,0.3);
  border-radius: 50%;
  color: #FDEB71;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253,235,113,0.2), transparent);
  transition: left 0.5s ease;
}

.social-link:hover::before { left: 100%; }

.social-link:hover {
  background: linear-gradient(135deg, #DA22FF, #9733EE);
  border-color: #FDEB71;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(218,34,255,0.4);
}

.footer-section { margin-bottom: 30px; }

.footer-title {
  color: #FDEB71;
  font-family: 'VT323', monospace;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: -8px;
  width: 30px; height: 2px;
  background: linear-gradient(90deg, #DA22FF, #9733EE);
  border-radius: 1px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-family: 'Spline Sans', sans-serif;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: transparent;
  font-size: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover::before { color: #DA22FF; transform: translateX(3px); }
.footer-links a:hover { color: #FDEB71; text-decoration: none; padding-left: 20px; }

.footer-contact { margin-top: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-item:hover {
  background: rgba(218,34,255,0.1);
  transform: translateX(5px);
}

.contact-icon {
  color: #DA22FF;
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info { flex-grow: 1; }

.contact-info p {
  font-family: 'Spline Sans', sans-serif;
  color: #ccc;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.contact-info a {
  font-family: 'Spline Sans', sans-serif;
  color: #FDEB71;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 2px 0;
  width: 100%;
  height: 100%;
  min-height: 20px;
}

.contact-info a:hover { color: #DA22FF; }

.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218,34,255,0.5), transparent);
  margin: 0;
  position: relative;
  z-index: 1;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: rgba(0,0,0,0.3);
}

.footer-bottom-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-bottom-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-column {
  flex: 1;
  text-align: center;
  min-width: 200px;
}

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

.footer-legal p {
  font-family: 'Spline Sans', sans-serif;
  color: #aaa;
  font-size: 13px;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: 'Spline Sans', sans-serif;
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.footer-legal-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: #DA22FF;
  transition: width 0.3s ease;
}

.footer-legal-links a:hover::after { width: 100%; }
.footer-legal-links a:hover { color: #FDEB71; }

.footer-signature {
  color: #FDEB71;
  font-family: 'VT323', monospace;
  font-size: 16px;
  margin: 0;
  text-shadow: 0 0 10px rgba(253,235,113,0.3);
  animation: pulse 3s ease-in-out infinite;
  text-align: center;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

/* Responsive footer */
@media (max-width: 991px) {
  .grid-footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .grid-footer { grid-template-columns: 1fr; }
}

/* STICKY CTA MOBILE */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 20px;
  background: rgba(248,248,248,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(218,34,255,0.2);
  z-index: 900;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-mobile.visible { transform: translateY(0); }

.sticky-cta-btn {
  background-image: linear-gradient(to right, #DA22FF 0%, #9733EE 51%, #DA22FF 100%);
  padding: 14px 28px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 15px;
  box-shadow: 0 0 20px rgba(218,34,255,0.3);
  border-radius: 50px;
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
}

.sticky-cta-btn:hover {
  background-position: right center;
  color: #FDEB71;
  text-decoration: none;
}

/* SCROLL ANIMATE */
.scroll-animate { opacity: 0; transform: translateY(20px); }
.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* DARK TOGGLE */
.dark-toggle {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(218,34,255,0.4);
  background: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease;
  outline: none;
}

.dark-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(218,34,255,0.35);
  border-color: #DA22FF;
}

.dark-toggle .toggle-icon {
  width: 22px; height: 22px;
  transition: opacity 0.25s ease, transform 0.35s ease;
  position: absolute;
}

.dark-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
.dark-toggle .icon-sun  { opacity: 0; transform: rotate(90deg) scale(0.6); }

body.dark-mode .dark-toggle {
  background: #18161f;
  border-color: rgba(218,34,255,0.5);
}

body.dark-mode .dark-toggle .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.6); }
body.dark-mode .dark-toggle .icon-sun  { opacity: 1; transform: rotate(0deg) scale(1); }

/* ============================================
   DARK MODE — SISTEMA COMPLETO
   ============================================ */

body.dark-mode {
  background: #0f0f13;
  color: #e0dde8;
  color-scheme: dark;
}

/* NAVBAR */
body.dark-mode .navbar {
  background-color: #18161f;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
body.dark-mode .nav-link { color: #c8c2d8; }
body.dark-mode .nav-link:hover { color: #DA22FF; }
body.dark-mode .navbar-text { color: #8a82a0; }
body.dark-mode .hamburger-line { background-color: #c8c2d8; }
body.dark-mode .nav-links { background-color: #18161f; }

/* HERO: todos los colores se preservan — no tocar .jumbotron */
body.dark-mode .jumbotron,
body.dark-mode .jumbotron .display-3,
body.dark-mode .jumbotron .display-4,
body.dark-mode .jumbotron .hero-highlight,
body.dark-mode .jumbotron .hero-bullets li,
body.dark-mode .jumbotron p,
body.dark-mode .jumbotron .hero-eyebrow { color: #FDEB71; }

/* CARDS (fondo oscuro) */
body.dark-mode .card {
  background-color: #1e1b28;
  border-color: rgba(218,34,255,0.15);
  color: #e0dde8;
}
body.dark-mode .card:hover {
  box-shadow: 0 20px 30px rgba(218,34,255,0.5);
}

/* HEADINGS */
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode .step-content h3,
body.dark-mode .benefit-card h3,
body.dark-mode .qualification-title,
body.dark-mode .section-title-dark { color: #f0ecfa; }

/* PÁRRAFOS GENERALES — blanco suave, no gris */
body.dark-mode p { color: #e0dde8; }

/* Excepciones de párrafos que tienen colores propios */
body.dark-mode .step-content p,
body.dark-mode .benefit-card p,
body.dark-mode .service-description,
body.dark-mode .problem-intro,
body.dark-mode .section-subtitle { color: #c8c2d8; }

body.dark-mode .text-muted { color: #8a82a0; }

/* EYEBROW GENERAL → morado; excepto dentro de problem-section → amarillo */
body.dark-mode .section-eyebrow { color: #DA22FF; }
body.dark-mode .problem-section .section-eyebrow { color: #FDEB71; }

/* PROBLEM SECTION */
body.dark-mode .problem-section { background: #1e1b28; }
body.dark-mode .problem-card {
  background: #262231;
  border-color: rgba(218,34,255,0.2);
}
body.dark-mode .problem-card:hover { background: rgba(218,34,255,0.08); }
body.dark-mode .problem-header h2 { color: #f0ecfa; }

/* Iconos SVG de problem cards → amarillo */
body.dark-mode .problem-icon svg { stroke: #FDEB71; }

/* Transición "si reconoces..." → amarillo */
body.dark-mode .problem-transition p,
body.dark-mode .problem-transition strong { color: #FDEB71; }

/* POSITIONING */
body.dark-mode .positioning-section { background: #13111a; }
body.dark-mode .positioning-list li { color: #c0b8d8; }
body.dark-mode .positioning-statement { color: #e0dde8; }
body.dark-mode .positioning-label.label-after { color: #DA22FF; }
body.dark-mode .label-before { color: #FF6FD8; font-weight: 700; }
body.dark-mode .positioning-col--before .positioning-list li {
  color: #c084e8;
  text-decoration: line-through;
  text-decoration-color: rgba(218,34,255,0.5);
}

/* METHOD STEPS */
body.dark-mode .method-steps::before { opacity: 0.25; }
body.dark-mode .step-number {
  background: #FDEB71;
  color: #1a1724;
  box-shadow: 0 0 20px rgba(253,235,113,0.35);
}
body.dark-mode .step-output { color: #DA22FF; }

/* FLOW SECTION */
body.dark-mode .flow-section { background: linear-gradient(135deg, #13111a 0%, #1a0f20 100%); }
body.dark-mode .flow-step {
  background: #1e1b28;
  border-color: rgba(218,34,255,0.2);
}
body.dark-mode .flow-step:hover {
  border-color: #DA22FF;
  box-shadow: 0 12px 30px rgba(218,34,255,0.25);
}
body.dark-mode .flow-step-label { color: #f0ecfa; }
body.dark-mode .flow-step-desc { color: #8a82a0; }

/* BENEFITS */
body.dark-mode .benefits-section { background: #0f0f13; }
body.dark-mode .benefit-card {
  background: #1a1724;
  border-color: rgba(218,34,255,0.12);
}
body.dark-mode .benefit-card:hover {
  background: #221d30;
  border-color: rgba(218,34,255,0.4);
  box-shadow: 0 12px 28px rgba(218,34,255,0.2);
}

/* QUALIFICATION */
body.dark-mode .qualification-section { background: #0f0f13; }
body.dark-mode .qualification-card { background: #1a1724; }
body.dark-mode .qualification-list li {
  color: #b0a8c8;
  border-bottom-color: rgba(255,255,255,0.06);
}

/* INCLUDES LIST */
body.dark-mode .branding-service-list li { color: #b0a8c8; }

/* CARD TAGLINE ("Presencia digital constante.", etc.) → amarillo */
body.dark-mode .card-tagline { color: #FDEB71; }

/* PRECIO ("Desde $14,900/mes", etc.) → amarillo */
body.dark-mode .precio { color: #FDEB71; }

/* CTA FINAL — la card tiene gradiente amarillo/rosa: preservar colores light */
body.dark-mode #cotizacion .card { background: linear-gradient(135deg, #FDEB71, #FF6FD8) !important; }
body.dark-mode #cotizacion h2 { color: #3813C2; }
body.dark-mode #cotizacion .lead { color: #333; }
body.dark-mode #cotizacion p { color: #333; }
body.dark-mode #cotizacion p strong { color: #333; }
body.dark-mode .form-label { color: #3813C2; }

/* FORM INPUTS — siempre blancos (viven sobre la card amarilla) */
body.dark-mode .form-control {
  background-color: #fff;
  color: #495057;
  border-color: #ced4da;
}
body.dark-mode .form-control:focus {
  border-color: #DA22FF;
  box-shadow: 0 0 5px rgba(218,34,255,0.5);
}
body.dark-mode .form-control::placeholder { color: #6c757d; }

/* "✦ Te respondemos en menos de 24 horas" — mantener morado light */
body.dark-mode .form-footer-note { color: #9733EE; }

/* STICKY CTA MOBILE */
body.dark-mode .sticky-cta-mobile {
  background: rgba(15,15,19,0.95);
  border-top: 1px solid rgba(218,34,255,0.2);
}



/* DARK MODE — iconos benefit cards y flow steps → amarillo */
body.dark-mode .benefit-icon-wrap svg { stroke: #FDEB71; }
body.dark-mode .flow-step-icon-wrap svg { stroke: #FDEB71; }

/* Excepción: el último flow-step tiene fondo morado, su icono va blanco */
body.dark-mode .flow-step--highlight .flow-step-icon-wrap svg { stroke: #fff; }

/* RESPONSIVE */
@media (max-width: 991px) {
  .grid-two-cols   { grid-template-columns: 1fr; }
  .grid-three-cols { grid-template-columns: repeat(2, 1fr); }
  .positioning-split { grid-template-columns: 1fr; }
  .positioning-divider { transform: rotate(90deg); }
  .conversion-flow { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
}

@media (max-width: 767px) {
  body { padding-top: 70px; }
  .grid-three-cols { grid-template-columns: 1fr; }
  .display-3 { font-size: 2.2rem; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #f5f5f5;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 20px;
    transition: left 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.active { left: 0; }
  .navbar-nav { flex-direction: column; margin-right: 0; width: 100%; text-align: center; }
  .nav-item { margin-left: 0; margin-bottom: 15px; width: 100%; }
  body.menu-open { overflow: hidden; }
  .method-steps::before { display: none; }
  .method-step { grid-template-columns: 1fr; }
  .qualification-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .dark-toggle { bottom: 80px; right: 16px; width: 46px; height: 46px; }
  .sticky-cta-mobile { display: flex; }
}

@media (min-width: 768px) {
  .sticky-cta-mobile { display: none; }
}

@media (max-width: 480px) {
  .display-3 { font-size: 2rem; }
  .display-4 { font-size: 18px; }
  .btn-grad  { font-size: 16px; padding: 12px 18px; }
  .container { padding-left: 10px; padding-right: 10px; }
}

@media (hover: none) and (pointer: coarse) {
  .card.in-view { transform: translateY(-5px); box-shadow: 0 20px 30px rgba(218,34,255,0.7); }
  .problem-card.in-view { border-color: rgba(218,34,255,0.4); transform: translateY(-4px); }
  .benefit-card.in-view { border-color: rgba(218,34,255,0.35); transform: translateY(-5px); }
  .flow-step.in-view { border-color: #DA22FF; box-shadow: 0 12px 30px rgba(218,34,255,0.2); }
}
