/* =========================
   VARIABLES GLOBALES
   ========================= */
:root {
  --primary: #daaf2e;
  --primary-soft: #f0c850;
  --bg: #050609;
  --bg-alt: #0c0f16;
  --card: #10141f;
  --text: #ffffff;
  --muted: #a5afc3;
  --danger: #ff4b6a;

  --radius-lg: 24px;
  --radius-md: 16px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
}

/* =========================
   RESET BÁSICO
   ========================= */
* {
  box-sizing: border-box;
}
/* =========================
   CLASE HIDDEN GLOBAL
========================= */
.hidden {
  display: none !important;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #151927 0%, #050609 55%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    90deg,
    rgba(5, 6, 9, 0.96),
    rgba(5, 6, 9, 0.92)
  );
  border-bottom: 1px solid rgba(218, 175, 46, 0.15);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 11px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-soft)
  );
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(250, 233, 172, 0.5);
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(135deg, #f7d25b, #d7aa2c);
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.nav-cta span:last-child {
  font-size: 16px;
}
/* =========================
   SECTIONS BASE
========================= */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(218, 175, 46, 0.35);
  background: rgba(10, 10, 10, 0.7);
  color: var(--primary-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-size: 32px;
  margin: 0 0 10px 0;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 640px;
  margin-inline: auto;
}

/* =========================
   HERO
========================= */
#about {
  padding-top: 70px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-soft);
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 38px;
  margin: 0 0 16px 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(90deg, #f6d66e, #d6a82c);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.btn-primary {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f8d968, #d7aa2c);
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.btn-secondary {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(218, 175, 46, 0.45);
  background: rgba(10, 12, 19, 0.9);
  color: var(--primary-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-whatsapp {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid #25d366;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(18, 140, 126, 0.55);
  transition: all 0.2s ease-in-out;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ef07b, #0e6a58);
  border-color: #2ef07b;
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.08);
}

.btn-whatsapp:active {
  transform: scale(0.96);
  filter: brightness(0.9);
  box-shadow: 0 8px 20px rgba(18, 140, 126, 0.35);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: var(--muted);
}

.hero-meta strong {
  color: var(--primary-soft);
  font-size: 13px;
}

/* =========================
   HERO CARD
========================= */
.hero-card {
  background: radial-gradient(
      circle at top left,
      rgba(250, 222, 136, 0.12),
      transparent 55%
    ),
    #10141f;
  border-radius: var(--radius-lg);
  padding: 26px 26px 20px;
  border: 1px solid rgba(218, 175, 46, 0.35);
  box-shadow: var(--shadow-soft);
}

.hero-card-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-soft);
  margin-bottom: 18px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}


.stat-box {
  background: rgba(9, 11, 18, 0.9);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  border: 1px solid rgba(218, 175, 46, 0.25);
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-soft);
}

.stat-caption {
  font-size: 11px;
  color: var(--muted);
}

.hero-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.hero-dot-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-dot-online span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00d27a;
  box-shadow: 0 0 8px #00d27a;
}

/* =========================
   SOLUCIONES
========================= */
#solutions {
  padding-top: 40px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.solution-card {
  background: radial-gradient(
      circle at top center,
      rgba(250, 222, 136, 0.08),
      transparent 60%
    ),
    #10141f;
  border-radius: var(--radius-md);
  padding: 18px 16px 16px;
  border: 1px solid rgba(218, 175, 46, 0.28);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-tag {
  font-size: 11px;
  color: var(--primary-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.solution-title {
  font-size: 18px;
  font-weight: 700;
  margin: 2px 0;
}

.solution-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.solution-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.solution-meta span strong {
  color: var(--primary-soft);
}

.solution-cta {
  margin-top: auto;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-soft);
  cursor: pointer;
}

/* =========================
   SERVICIOS
========================= */
#servicios {
  padding-top: 20px;
}

.services-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: #10141f;
  border-radius: var(--radius-md);
  border: 1px solid rgba(218, 175, 46, 0.25);
  padding: 18px 16px 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
}

.service-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

/* =========================
   CALCULADORA
========================= */
#calculator {
  padding-top: 20px;
}

.calculator-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: flex-start;
}

.card {
  background: #10141f;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(218, 175, 46, 0.28);
  box-shadow: var(--shadow-soft);
  padding: 20px 18px 18px;
}

.card-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-soft);
  margin: 0 0 18px 0;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(218, 175, 46, 0.22);
  background: #070912;
  color: var(--text);
  font-size: 13px;
}

.textarea {
  resize: vertical;
  min-height: 80px;
}

.form-hint {
  font-size: 11px;
  color: var(--muted);
}
.results-hint {
  margin-bottom: 12px;
}

.btn-calc {
  margin-top: 10px;
  width: 100%;
  padding: 11px 0;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f8d968, #d7aa2c);
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  cursor: pointer;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.result-box {
  border-radius: 12px;
  background: #070a11;
  border: 1px solid rgba(218, 175, 46, 0.16);
  padding: 10px 11px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-size: 11px;
}

.result-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-soft);
}

.result-detail {
  font-size: 11px;
  color: var(--muted);
}



/* =========================
   CONTACTO
========================= */
#contact {
  padding-top: 20px;
}

.contact-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 22px;
}

.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-line {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-highlight {
  color: var(--primary-soft);
  font-weight: 600;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(218, 175, 46, 0.35);
  font-size: 12px;
  margin-bottom: 8px;
}

.contact-pill span:first-child {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #00d27a;
  box-shadow: 0 0 8px #00d27a;
}

/* =========================
   FOOTER
========================= */
footer {
  border-top: 1px solid rgba(218, 175, 46, 0.2);
  margin-top: 50px;
  padding: 20px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

footer strong {
  color: var(--primary-soft);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 960px) {
  #about {
    grid-template-columns: minmax(0, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calculator-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .navbar-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .solutions-grid,
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-title {
    font-size: 30px;
  }

  .two-cols {
    grid-template-columns: minmax(0, 1fr);
  }
}

.logo-img {
  height: 58px;
  width: auto;
}

@media (max-width: 768px) {
  .logo-img {
    height: 42px;
  }
}

@media (max-width: 640px) {
  .logo-img {
    height: 40px;
  }
}
/* =========================
   BOTÓN WHATSAPP FLOTANTE SOLEV
========================= */
.solev-whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 14px 35px rgba(18, 140, 126, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.25s ease;
}

.solev-whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 45px rgba(18, 140, 126, 0.7);
  filter: brightness(1.08);
}

.solev-whatsapp-float img {
  width: 34px;
  height: 34px;
}

/* =========================
   TEXTO TOOLTIP WHATSAPP
========================= */
.solev-whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: #10141f;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  white-space: nowrap;
  border: 1px solid rgba(218, 175, 46, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.solev-whatsapp-float:hover .solev-whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .solev-whatsapp-tooltip {
    display: none;
  }
}

/* =========================
   GRID PRECALIFICACIÓN
========================= */
.qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .qualification-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MOBILE FIRST OPTIMIZATION
========================= */
@media (max-width: 768px) {

  /* CONTENEDOR GENERAL */
  .section {
    padding: 48px 16px;
  }

  /* TÍTULOS */
  .hero-title {
    font-size: 26px;
    line-height: 1.25;
  }

  .section-title {
    font-size: 22px;
    line-height: 1.3;
  }

  /* TEXTOS */
  .section-subtitle,
  .hero-text {
    font-size: 14px;
    line-height: 1.5;
  }

  /* BADGES */
  .badge {
    font-size: 11px;
    padding: 6px 10px;
  }

  /* BOTONES */
  .btn-primary,
  .btn-secondary,
  .btn-calc,
  .btn-whatsapp {
    width: 100%;
    font-size: 15px;
    padding: 14px 16px;
  }

  /* HERO CTA */
  .hero-cta-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================
   FIX INPUT ZOOM iOS
========================= */
@media (max-width: 768px) {
  .input,
  .select,
  .textarea {
    font-size: 16px;
  }
}

/* =========================
   SAFE SPACE FLOATING CTA
========================= */
@media (max-width: 768px) {
  body {
    padding-bottom: 90px;
  }
}

/* =========================
   VALIDACIONES VISUALES
========================= */
.form-error {
  margin-top: 6px;
  font-size: 13px;
  color: var(--danger);
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   PRECALIFICACIÓN FEEDBACK
========================= */
.precal-result {
  margin-top: 16px;
  min-height: 22px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* =========================
   FEEDBACK VISUAL SELECTS
========================= */
.select {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.select-valid {
  border-color: #00d27a !important;
  box-shadow: 0 0 0 1px rgba(0, 210, 122, 0.35);
}

.select-invalid {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 1px rgba(255, 75, 106, 0.35);
}

/* =========================
   PERFORMANCE MOBILE ADS
========================= */
* {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  touch-action: manipulation;
}


/* === CONTACTO DIRECTO CENTRADO === */
.contact-center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-compact {
  width: 100%;
  max-width: 520px;   /* ancho ideal, no gigante */
  padding: 32px 28px;
}

/* Mobile */
@media (max-width: 600px) {
  .contact-compact {
    max-width: 100%;
  }
}
.results-highlight {
  animation: glowResult 0.9s ease-out;
  box-shadow:
    0 0 0 2px rgba(218,175,46,0.55),
    0 22px 55px rgba(0,0,0,0.85);
}

@keyframes glowResult {
  from {
    box-shadow:
      0 0 0 0 rgba(218,175,46,0),
      0 0 0 rgba(0,0,0,0);
  }
  to {
    box-shadow:
      0 0 0 2px rgba(218,175,46,0.55),
      0 22px 55px rgba(0,0,0,0.85);
  }
}

/* =========================
   CTA STICKY PRECALIFICACIÓN (MÓVIL)
========================= */
@media (max-width: 768px) {
  .btn-precal-sticky {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 900;
    display: flex;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  }
}
.hero-card-footer > div:last-child {
  text-align: right;
}

/* =========================
   BENEFICIOS — FUTURISTA PREMIUM
========================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.benefits-grid {
  align-items: stretch;
}

/* CARD BASE */
.benefit-card {
  position: relative;
  border-radius: 26px;
  padding: 28px 26px;
  background: linear-gradient(
    135deg,
    #2a2308,
    #b8932d
  );
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* HOVER */
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 32px 75px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* GLOW FUTURISTA */
.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  box-shadow: 0 0 55px rgba(218, 175, 46, 0.45);
  opacity: 0.35;
  pointer-events: none;
}

/* TÍTULO */
.benefit-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

/* TEXTO */
.benefit-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #fffdf6;
  font-weight: 500;
  flex: 1;
}

/* CARD DESTACADA (ROI < 1 AÑO) */
.benefit-card.highlight {
  
  background: linear-gradient(
    135deg,
    #3a2c00,
    #ffd84d
  );
}

.benefit-card.highlight::after {
  box-shadow: 0 0 70px rgba(255, 216, 77, 0.6);
  opacity: 0.45;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 960px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card.highlight {
   
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card.highlight {
    grid-column: span 1;
  }
}

/* =========================
   CARDS SI / NO — FUTURISTAS
========================= */

.qualification-grid .service-card {
  border-radius: 24px;
  padding: 28px 26px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qualification-grid .service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.85),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* =========================
   SI ES PARA TI — VERDE TECH
========================= */
.qualification-grid .service-card:first-child {
  background: linear-gradient(
    135deg,
    #0f3d2e,
    #1fbf8f
  );
  color: #ffffff;
}

.qualification-grid .service-card:first-child .service-title {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.qualification-grid .service-card:first-child li {
  color: #f4fffb;
  font-weight: 500;
}

/* Glow sutil futurista */
.qualification-grid .service-card:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: 0 0 45px rgba(31, 191, 143, 0.35);
  opacity: 0.4;
  pointer-events: none;
}

/* =========================
   NO ES PARA TI — ROJO ELEGANTE
========================= */
.qualification-grid .service-card:last-child {
  background: linear-gradient(
    135deg,
    #2a0f14,
    #7a1f2b
  );
  color: #ffffff;
}

.qualification-grid .service-card:last-child .service-title {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.qualification-grid .service-card:last-child li {
  color: #fff2f2;
  font-weight: 500;
}

/* Glow controlado (no agresivo) */
.qualification-grid .service-card:last-child::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(200, 60, 80, 0.35);
  opacity: 0.35;
  pointer-events: none;
}
/* =========================
   MODAL SOLEV FILTRO
========================= */
.solev-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.solev-modal-box {
  background: linear-gradient(135deg, #0e1526, #0a1020);
  border: 1px solid rgba(218,175,46,.35);
  border-radius: 22px;
  padding: 32px 28px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0,0,0,.8);
}

.solev-modal-box h3 {
  color: #daaf2e;
  margin-bottom: 14px;
}

.solev-modal-box p {
  color: #d0d6e0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

