/* Variables de colores y estilos principales */
:root {
  --primary: #00a8e8;  /* Azul principal */
  --primary-dark: #0077b6;
  --secondary: #ff6b35;  /* Naranja / acentos */
  --secondary-dark: #e85d2e;
  --accent: #7209b7;  /* Púrpura / destacados */
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --success: #4caf50;
  --info: #03a9f4;
  --warning: #ffc107;
  --danger: #e53935;
  --transition: all 0.3s ease;
}

/* Estilos base */
body {
  font-family: 'Helvetica', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background-color: var(--light);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

/* Botones personalizados */
.btn {
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Header y navegación */
.NavQuantumExcellence {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}

.NavQuantumExcellence .navbar-brand img {
  max-height: 40px;
}

.NavQuantumExcellence .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  transition: var(--transition);
}

.NavQuantumExcellence .nav-link:hover {
  color: var(--primary);
}

.NavQuantumExcellence .btn-call {
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.NavQuantumExcellence .btn-call:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
}

/* Hero Section */
.HeroSpectrumVision {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.HeroSpectrumVision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('img/pattern.svg');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.HeroSpectrumVision .content {
  position: relative;
  z-index: 1;
}

/* Secciones de planes */
.PlansCrystalMatrix {
  padding: 5rem 0;
  position: relative;
}

.plan-card {
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
  border: 2px solid var(--accent);
  position: relative;
  z-index: 1;
}

.plan-header {
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--white);
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.plan-period {
  font-size: 1rem;
  opacity: 0.8;
}

.plan-features {
  padding: 2rem;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features ul li {
  padding: 0.7rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-features ul li:last-child {
  border-bottom: none;
}

.plan-features ul li i {
  color: var(--success);
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.plan-footer {
  padding: 1rem 2rem 2rem;
  text-align: center;
}

.plan-badge {
  position: absolute;
  top: 0;
  right: 1rem;
  background-color: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Beneficios y características */
.BenefitsProspectFlow {
  background-color: var(--light);
  padding: 5rem 0;
}

.benefit-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.benefit-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

/* Tecnología / Servicios */
.TechnologyQuantumWave {
  padding: 5rem 0;
}

.tech-feature {
  display: flex;
  margin-bottom: 2rem;
}

.tech-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 168, 232, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1.5rem;
}

.tech-content h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

/* Testimonios */
.TestimonialsEmpathyTrust {
  background-color: var(--light);
  padding: 5rem 0;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(0, 168, 232, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1rem;
}

.author-info h4 {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 1rem;
}

.author-info p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Call To Action */
.ActionEnergySpark {
  background: linear-gradient(120deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.ActionEnergySpark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('img/pattern.svg');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.ActionEnergySpark .content {
  position: relative;
  z-index: 1;
}

/* Cobertura y mapa */
.CoverageOptimalReach {
  padding: 5rem 0;
}

.coverage-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray);
  font-size: 1.1rem;
}

/* Formulario de contratación */
.FormIdentityProcess {
  padding: 5rem 0;
  background-color: var(--light);
}

.form-container {
  background-color: var(--white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 3rem;
}

.form-section-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.service-option input[type="radio"] {
  display: none;
}

.service-option label {
  cursor: pointer;
  transition: var(--transition);
  border-radius: 10px;
}

.service-option input[type="radio"]:checked + label {
  background-color: rgba(0, 168, 232, 0.05);
  border-color: var(--primary) !important;
  border-width: 2px !important;
}

.service-option label:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.plan-option input[type="radio"] {
  display: none;
}

.plan-option label {
  cursor: pointer;
  transition: var(--transition);
  border-radius: 10px;
}

.plan-option input[type="radio"]:checked + label {
  background-color: rgba(0, 168, 232, 0.05);
  border-color: var(--primary) !important;
  border-width: 2px !important;
}

.plan-option .price-tag {
  color: var(--primary);
  font-weight: 700;
}

/* Proceso / Pasos */
.ProcessInsightSteps {
  padding: 5rem 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem;
  margin-bottom: 2rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.step-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Aplicación móvil */
.AppInterfaceUnity {
  padding: 5rem 0;
  background-color: var(--light);
}

.app-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.app-feature i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
}

/* Footer */
.FooterInspirationHub {
  background-color: var(--dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
  color: var(--primary);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Cookie Notice */
.CookieAlertConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 46, 0.95);
  padding: 1rem 0;
  z-index: 9999;
}

.cookie-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-message p {
  color: var(--white);
  margin-bottom: 0;
}

.cookie-message a {
  color: var(--secondary);
  text-decoration: underline;
}

/* Secciones específicas para páginas secundarias */
.SubpageQuantumBanner {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 8rem 0 5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.SubpageQuantumBanner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('img/pattern.svg');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.SubpageQuantumBanner .content {
  position: relative;
  z-index: 1;
}

/* Media Queries */
@media (max-width: 991.98px) {
  .benefit-card, .testimonial-card, .plan-card {
    margin-bottom: 2rem;
  }
  
  .plan-card.featured {
    transform: scale(1);
  }
  
  .HeroSpectrumVision {
    min-height: auto;
    padding: 6rem 0;
  }
  
  .tech-feature {
    margin-bottom: 3rem;
  }
  
  .cookie-message {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .tech-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .tech-icon {
    margin: 0 auto 1rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-avatar {
    margin: 0 auto 1rem;
  }
  
  .form-container {
    padding: 2rem 1rem;
  }
  
  .step-number::after {
    display: none;
  }
}