/* 🔹 Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🔹 Fondo general futurista */
body {
  font-family: "Poppins", sans-serif;
  background: #0a0a0a;
  color: #fff;
}

/* 🔹 Barra superior */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
  padding: 10px 40px;
  border-bottom: 1px solid rgba(0, 255, 200, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
}

/* 🔹 Texto contacto */
.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #0ff;
}

.contact-info i {
  margin-right: 5px;
  color: #00ffc6;
}

.divider {
  color: rgba(255, 255, 255, 0.5);
}

/* 🔹 Iconos redes */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #00ffc6;
  text-shadow: 0 0 10px #00ffc6, 0 0 20px #00ffc6;
}

/* 🔹 Responsivo */
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 15px 20px;
  }
}
/* 🔹 NAVBAR */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: linear-gradient(90deg, #0d0d0d, #1a1a1a);
  border-bottom: 1px solid rgba(0, 255, 200, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-logo img {
  width: 180px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 200, 0.5));
  transition: transform 0.3s ease;
}

.navbar-logo img:hover {
  transform: scale(1.05);
}

/* 🔹 Links */
.navbar-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar-links li a {
  text-decoration: none;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: #00ffc6;
  text-shadow: 0 0 10px #00ffc6, 0 0 20px #00ffc6;
}

/* 🔹 Efecto underline futurista */
.navbar-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #00ffc6;
  transition: width 0.3s ease;
}

.navbar-links li a:hover::after,
.navbar-links li a.active::after {
  width: 100%;
}

/* 🔹 Botón hamburguesa */
.navbar-toggle {
  display: none;
  font-size: 22px;
  color: #00ffc6;
  cursor: pointer;
}

/* 🔹 Responsivo */
@media (max-width: 992px) {
  .navbar-links {
    position: fixed;
    top: 70px;
    right: -100%;
    height: 100vh;
    width: 220px;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 20px;
    transition: right 0.3s ease;
  }

  .navbar-links.show {
    right: 0;
  }

  .navbar-toggle {
    display: block;
  }
}
/* 🔹 HERO SECTION con imagen de fondo */
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/header.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

/* 🔹 Overlay futurista encima de la imagen */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.8),
    rgba(15, 15, 15, 0.8)
  );
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* 🔹 Contenido */
.hero-content {
  max-width: 900px;
  z-index: 2;
  position: relative;
}

.hero-subtitle {
  font-size: 24px;
  color: #00ffc6;
  margin-bottom: 15px;
  text-shadow: 0 0 15px #00ffc6;
}

.hero-title {
  font-size: 42px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 0 0 20px rgba(0, 255, 200, 0.4);
}

.hero-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

/* 🔹 Botones futuristas */
.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #00ffc6;
  color: #0a0a0a;
  box-shadow: 0 0 15px #00ffc6, 0 0 30px rgba(0, 255, 200, 0.6);
}

.btn-primary:hover {
  background: #0a0a0a;
  color: #00ffc6;
  box-shadow: 0 0 25px #00ffc6, 0 0 50px rgba(0, 255, 200, 0.8);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #00ffc6;
  color: #0a0a0a;
  border-color: #00ffc6;
  box-shadow: 0 0 20px #00ffc6;
}

/* 🔹 Responsivo */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }
}

/* 🔹 ABOUT SECTION */
.about {
  width: 100%;
  padding: 80px 20px;
  background: #0d0d0d;
  color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* 🔹 Imagen */
.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.4);
}

/* 🔹 Etiqueta sobre la imagen */
.about-tag {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ffc6;
  padding: 12px 25px;
  border-radius: 8px;
  color: #0a0a0a;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 0 15px #00ffc6;
}

/* 🔹 Texto */
.about-text {
  flex: 1;
}

.about-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  color: #00ffc6;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* 🔹 Responsivo */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-tag {
    bottom: -15px;
    font-size: 14px;
  }

  .about-title {
    font-size: 26px;
  }
}
/* Sección ¿Por qué elegirnos? */
.porque-elegirnos {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1f);
  position: relative;
  overflow: hidden;
}

/* Efecto futurista en el título */
.futuristic-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Color de acento para íconos y subtítulos */
.text-accent {
  color: #00f0ff !important;
}

/* Imagen con sombra tecnológica */
.porque-elegirnos img {
  border-radius: 15px;
  transition: transform 0.4s ease;
}
.porque-elegirnos img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* Animación suave en la lista */
.porque-elegirnos ul li {
  transition: transform 0.3s ease, color 0.3s ease;
}
.porque-elegirnos ul li:hover {
  transform: translateX(8px);
  color: #00f0ff;
}
/* Fondo de sección con gradiente animado */
.servicios {
  background: linear-gradient(135deg, #0f0f1f, #1a1a2e);
  position: relative;
  overflow: hidden;
}

/* Título futurista */
.futuristic-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: #00f0ff !important;
}

/* Tarjeta con efecto glassmorphism */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover brillante */
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  border-color: #00f0ff;
}

/* Íconos con efecto de neón */
.icon-wrapper i {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
  transition: transform 0.3s ease;
}
.icon-wrapper i:hover {
  transform: scale(1.2) rotate(5deg);
}
/* Fondo sección */
.planes {
  background: linear-gradient(135deg, #0f0f1f, #1a1a2e);
  position: relative;
  overflow: hidden;
}

/* Títulos */
.futuristic-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-accent {
  color: #00f0ff !important;
}

/* Caja de plan */
.plan-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Hover con efecto neón */
.plan-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
  border-color: #00f0ff;
}

/* Precio */
.price-box h1 {
  font-size: 2.5rem;
  color: #00f0ff;
  font-weight: bold;
}
.price-box small {
  font-size: 1rem;
  opacity: 0.8;
  margin-right: 4px;
}

/* Encabezado */
.plan-header {
  background: linear-gradient(90deg, #00f0ff, #0066ff);
  border-radius: 10px;
  padding: 10px;
  margin: 15px 0;
}
.plan-header h3 {
  color: white;
  margin: 0;
  font-weight: 600;
}

/* Detalles */
.plan-body p {
  color: #ddd;
  margin: 6px 0;
  font-size: 0.95rem;
}

/* Plan destacado */
.featured {
  border: 2px solid #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
  transform: scale(1.05);
}
/* Texto destacado dentro de los planes */
.plan-body strong {
  color: #00f0ff;
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plan-body hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 6px 0;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 12px;
  margin-top: 5px;
}

.badge-info {
  background: #00f0ff;
  color: #000;
}

.badge-warning {
  background: #ffcc00;
  color: #000;
}
/* Títulos futuristas */
.futuristic-title {
  font-family: "Orbitron", sans-serif;
  color: #fff;
  text-shadow: 0 0 10px #00eaff, 0 0 20px #0084ff;
}

.neon-text {
  text-shadow: 0 0 6px #00eaff, 0 0 12px #0084ff;
}

/* Botones futuristas (Glassmorphism + Hover Glow) */
.btn-glass {
  background: rgba(0, 20, 40, 0.7);
  border: 1px solid rgba(0, 234, 255, 0.5);
  color: #00eaff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(0, 234, 255, 0.2);
  color: #fff;
  box-shadow: 0 0 15px #00eaff, 0 0 30px #0084ff;
}

/* Formularios futuristas */
.futuristic-form {
  background: rgba(15, 15, 30, 0.85);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.2);
  backdrop-filter: blur(12px);
  margin-bottom: 2rem;
}

/* Inputs futuristas */
.futuristic-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 234, 255, 0.3);
  color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.futuristic-input:focus {
  border-color: #00eaff;
  box-shadow: 0 0 12px #00eaff;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}
label {
  color: #00eaff;
  font-weight: 600;
}
/* Tarjeta futurista */
.futuristic-card {
  background: rgba(15, 15, 30, 0.85);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.2);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  position: relative;
  padding-bottom: 1rem;
}
.futuristic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #00eaff, 0 0 60px #0084ff;
}

/* Imagen del equipo */
.team-img img {
  width: 100%;
  border-bottom: 2px solid rgba(0, 234, 255, 0.4);
  transition: transform 0.4s ease;
}
.futuristic-card:hover .team-img img {
  transform: scale(1.05);
}

/* Info del equipo */
.team-info h5 {
  font-family: "Orbitron", sans-serif;
  margin-top: 1rem;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 234, 255, 0.6);
}
.team-info span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Redes sociales futuristas */
.team-social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.team-social a {
  color: #00eaff;
  font-size: 1.2rem;
  border: 1px solid rgba(0, 234, 255, 0.4);
  border-radius: 50%;
  padding: 8px 12px;
  transition: all 0.3s ease;
}
.team-social a:hover {
  background: #00eaff;
  color: #0a0a0a;
  box-shadow: 0 0 15px #00eaff;
}

.testimonial-card {
  min-height: 320px;
  /* 🔹 asegura mismo alto en todas las tarjetas */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.2);
  background: linear-gradient(145deg, #111827, #1f2937);
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.testimonial-text {
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Fondo futurista con gradiente */
.footer-tech {
  background: linear-gradient(135deg, #0a0f1c, #1b2838, #0f172a);
  border-top: 2px solid rgba(0, 255, 255, 0.2);
}

.footer-title {
  color: #00f7ff;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #00f7ff;
  margin-top: 6px;
}

/* Enlaces */
.footer-link {
  color: #ddd;
  margin-bottom: 10px;
  transition: color 0.3s ease, transform 0.2s;
}

.footer-link:hover {
  color: #00f7ff;
  transform: translateX(5px);
}

/* Redes sociales */
.btn-social-glow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #00f7ff;
  color: #00f7ff;
  transition: all 0.3s ease;
}

.btn-social-glow:hover {
  background: #00f7ff;
  color: #0a0f1c;
  box-shadow: 0 0 12px #00f7ff;
}
.social-icons {
  gap: 10px;
}

/* Newsletter */
.newsletter-box {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.newsletter-input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  background: transparent;
  color: #fff;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  background: #00f7ff;
  color: #0a0f1c;
  border: none;
  padding: 0 25px;
  font-weight: bold;
  transition: 0.3s;
}

.newsletter-btn:hover {
  background: #0af0d7;
  box-shadow: 0 0 12px #00f7ff;
}
.footer {
  background: #0d0d1a;
  border-top: 2px solid #3e3e4e;
  padding: 20px 40px;
  font-family: "Orbitron", sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  color: #ccc;
}

.footer-left span {
  color: #00d9ff;
  font-weight: 600;
}

.footer-left .designer {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-left a {
  color: #00d9ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-left a:hover {
  color: #ff0099;
}

.footer-right {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-right a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #00d9ff;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #0d0d0d; /* Fondo oscuro tipo metal */
  color: #00e0ff; /* Azul eléctrico */
  font-size: 1.6rem;
  border-radius: 12px; /* Bordes cuadrados futuristas */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #00e0ff;
  box-shadow: 0 0 15px rgba(0, 224, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  background: #111111; /* Más claro en hover */
  color: #0aff9d; /* Verde digital */
  border-color: #0aff9d;
  box-shadow: 0 0 20px rgba(10, 255, 157, 0.6);
  transform: translateY(-5px) scale(1.05);
}

.back-to-top i {
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-3px);
}
/* Precio anterior (tachado en rojo) */
.old-price {
  text-decoration: line-through;
  color: #e74c3c; /* rojo elegante */
  font-size: 1rem;
  margin-right: 6px;
  opacity: 0.8;
}

/* Precio nuevo (neón brillante) */
.new-price {
  color: #00eaff; /* azul neón */
  font-weight: bold;
  font-size: 1.4rem;
  text-shadow: 0 0 6px rgba(0, 234, 255, 0.7);
}

.family-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.family-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.glow {
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.6), 0 0 20px rgba(0, 123, 255, 0.3);
}

.text-light-50 {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5em;
  max-height: 70px;
  overflow-y: auto;
  padding-right: 5px;
}

/* ==== ESTILOS FAQ ==== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #222;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: linear-gradient(90deg, #00eaff, #0aff9d);
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 16px 20px;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  filter: brightness(1.1);
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  /* cambia + a x */
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #111;
  color: #eee;
  line-height: 1.6;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding: 20px;
  /* espacio arriba y abajo */
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.profile-link {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(90deg, #00eaff, #0aff9d);
  padding: 6px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
  transition: all 0.3s ease;
}

.profile-link:hover {
  filter: brightness(1.2);
}
