/* ===== CSS COMPARTIDO PARA PÁGINAS DE SERVICIOS ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Exo 2', sans-serif;
  background: #0a0e27;
  color: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HEADER ===== */
.encabezado {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 210, 255, 0.15);
}

.contenedor-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.titulo-marca {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  padding: 0.5rem 0;
}

nav a:hover {
  color: #00d2ff;
}

/* ===== HERO DEL SERVICIO ===== */
.servicio-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(ellipse at center, #0f1538 0%, #0a0e27 70%);
  text-align: center;
}

.hero-content {
  max-width: 800px;
}

.hero-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(58, 123, 213, 0.2));
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 210, 255, 0.4);
}

.hero-icon i {
  font-size: 3.5rem;
  color: #00d2ff;
}

.servicio-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* ===== DESCRIPCIÓN ===== */
.servicio-descripcion {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(58, 123, 213, 0.08) 0%, transparent 100%);
}

.descripcion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.descripcion-texto h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #00d2ff;
}

.descripcion-texto p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.imagen-placeholder {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagen-placeholder i {
  font-size: 6rem;
  color: rgba(0, 210, 255, 0.4);
}

/* ===== CARACTERÍSTICAS ===== */
.servicio-caracteristicas {
  padding: 5rem 0;
}

.servicio-caracteristicas h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.caracteristicas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.caracteristica-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  text-align: center;
  transition: all 0.3s;
}

.caracteristica-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.15);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(58, 123, 213, 0.2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 1.8rem;
  color: #00d2ff;
}

.caracteristica-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.caracteristica-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* ===== BENEFICIOS ===== */
.servicio-beneficios {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 210, 255, 0.08) 100%);
}

.servicio-beneficios h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.beneficios-lista {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.beneficio-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border-left: 4px solid #00d2ff;
  transition: all 0.3s;
}

.beneficio-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.beneficio-item i {
  font-size: 1.3rem;
  color: #00d2ff;
}

.beneficio-item span {
  font-size: 1rem;
}

/* ===== CTA ===== */
.servicio-cta {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 210, 255, 0.1) 0%, rgba(58, 123, 213, 0.1) 100%);
  border-radius: 30px;
  margin: 3rem auto;
  max-width: 1200px;
}

.servicio-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.servicio-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 210, 255, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(0, 210, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(0, 210, 255, 0.2);
  border-color: #00d2ff;
}

/* ===== PLANES/PRECIOS ===== */
.servicio-planes {
  padding: 5rem 0;
}

.servicio-planes h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.plan-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  text-align: center;
  transition: all 0.3s;
}

.plan-card.destacado {
  border-color: #00d2ff;
  transform: scale(1.05);
  background: linear-gradient(145deg, rgba(0, 210, 255, 0.1), rgba(58, 123, 213, 0.05));
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card.destacado:hover {
  transform: scale(1.05) translateY(-5px);
}

.plan-nombre {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-precio {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00d2ff;
  margin-bottom: 1.5rem;
}

.plan-precio span {
  font-size: 1rem;
  opacity: 0.7;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features li i {
  color: #00d2ff;
}

/* ===== FOOTER ===== */
footer {
  background: rgba(10, 14, 39, 0.98);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(0, 210, 255, 0.2);
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-logo img {
  max-width: 80px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-logo img:hover {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contenedor-header {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .descripcion-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .servicio-hero h1 {
    font-size: 2rem;
  }

  .plan-card.destacado {
    transform: none;
  }

  .plan-card.destacado:hover {
    transform: translateY(-5px);
  }
}
