/* ==========================================================================
   VENDESPY — PÁGINA DE CONTACTO / SOPORTE
   Misma línea de colores de la landing (Midnight Navy + Azul Eléctrico)
   ========================================================================== */

/* Navbar: enlace activo */
.nav-link-active {
  color: #00D2FF !important;
  position: relative;
}
.nav-link-active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #00D2FF, #0066FF);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

/* Menú móvil desplegable */
@media (max-width: 768px) {
  .navbar.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #040D1A;
    border-bottom: 1px solid rgba(0, 102, 255, 0.25);
    padding: 1rem 1.5rem 1.25rem;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }
  .navbar.nav-open .nav-links a {
    font-size: 1rem;
  }
  .navbar.nav-open .nav-link-active::after {
    display: none;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.contact-hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0) 60%),
    var(--bg-dark);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(0, 210, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.07) 0%, transparent 40%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  margin: 1.25rem 0 1.25rem;
}

.contact-hero-subtitle {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2.25rem;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-hero-micro {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.contact-hero-micro b {
  color: #22C55E;
}

/* ==========================================================================
   CANALES DE CONTACTO
   ========================================================================== */
.contact-channels {
  padding: 4.5rem 0;
  position: relative;
  background: linear-gradient(180deg, rgba(4, 13, 26, 0) 0%, rgba(8, 22, 42, 0.5) 50%, rgba(4, 13, 26, 0) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.contact-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 210, 255, 0.45);
  box-shadow: 0 0 40px rgba(0, 102, 255, 0.18);
}

.contact-icon {
  font-size: 2.4rem;
  line-height: 1;
  filter: drop-shadow(0 0 14px rgba(0, 102, 255, 0.45));
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.btn-card-wa,
.btn-card-email,
.btn-card-guide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  width: 100%;
}

.btn-card-wa {
  background: linear-gradient(135deg, #16a34a, #22C55E);
  color: #040D1A;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.25);
}

.btn-card-wa:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.45);
}

.btn-card-email {
  background: linear-gradient(135deg, #0052CC, #0066FF);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.25);
}

.btn-card-email:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}

.btn-card-guide {
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--border-cyan);
  color: #00D2FF;
}

.btn-card-guide:hover {
  background: rgba(0, 210, 255, 0.18);
  border-color: #00D2FF;
}

.contact-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  border-top: 1px dashed rgba(0, 102, 255, 0.2);
  padding-top: 0.75rem;
  width: 100%;
}

/* ==========================================================================
   FAQ DE CONTACTO
   ========================================================================== */
.contact-faq {
  padding: 4.5rem 0;
}

.contact-faq .faq-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
}

/* ==========================================================================
   STRIP DE CONFIANZA
   ========================================================================== */
.contact-trust {
  padding: 3rem 0 5rem;
}

.contact-trust-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(0, 210, 255, 0.06));
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact-trust-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00D2FF, transparent);
}

.contact-trust-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.contact-trust-box p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 1.75rem;
}

.contact-trust-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.contact-trust-tags span {
  font-size: 0.82rem;
  color: #00D2FF;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid var(--border-cyan);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 4.5rem 0 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero-actions {
    flex-direction: column;
  }
  .contact-hero-actions .btn-primary,
  .contact-hero-actions .btn-secondary {
    width: 100%;
  }
}
