:root {
  /* Colores principales */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #06b6d4;

  /* Colores neutros */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Tipografía */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  /* Espaciado */
  --section-padding: 90px 0;

  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Bordes */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Transiciones */
  --transition: all 0.2s ease-in-out;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #3498db;
  border-radius: 10px;
  border: 3px solid var(--primary);
}

/* Opcional: efectos de animación */
::-webkit-scrollbar-thumb:hover {
  background-color: #2980b9;
}

/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Tipografía */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-900);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #128c7e;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.whatsapp-btn i {
  font-size: 20px;
}

/* Navegación */
.navbar {
  /*background-color: rgba(255, 255, 255, 0.95);
  */
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: var(--transition);
  z-index: 999999;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--gray-200);

  .brand-name {
    color: var(--gray-900);
  }

  .brand-tagline {
    color: var(--gray-500);
  }

  .nav-link {
    color: var(--gray-900);
  }
}

.navbar-toggler {
  background-color: var(--white);

  .navbar-toggler-icon {
    background-color: var(--white);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.brand-tagline {
  font-size: 12px;
  color: var(--white);
  line-height: 1;
}

.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  background-color: var(--gray-50);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Botones */
.btn {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 13px;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-secondary {
  color: var(--gray-600);
  border-color: var(--gray-300);
  background-color: transparent;
}

.btn-outline-secondary:hover {
  background-color: var(--gray-100);
  border-color: var(--gray-400);
  color: var(--gray-700);
}

.btn-success {
  background-color: var(--success);
  color: white;
  border-color: var(--success);
}

.btn-success:hover {
  background-color: #059669;
  border-color: #059669;
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section,
.about-hero,
.help-hero,
.network-hero,
.legal-header,
.portal-header {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;

  .video0 {
    top: 0;
    width: 100%;
    height: 100vh;
    position: absolute;
    object-fit: cover;
    pointer-events: none;
  }

  @media (max-width: 992px) {
    height: 100%;

    .video0 {
      height: 100%;
    }
  }
}

.hero-title {
  color: var(--white);
}

.hero-description {
  color: var(--white);
}

.search-suggestions {
  color: var(--white);

  .suggestion-label {
    color: var(--white);
  }
}

.hero-section::before,
.about-hero::before,
.help-hero::before,
.help-hero::before,
.network-hero::before,
.legal-header::before,
.portal-heade::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #00000094;
  pointer-events: none;
  backdrop-filter: blur(7px);
}

.hero-content,
.about-hero,
.help-hero,
.network-hero,
.legal-header,
.portal-header {
  position: relative;
  z-index: 2;

  .container {
    z-index: 2000;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);

  @media (max-width: 576px) {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-description {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.status-item {
  color: var(--white);
}

.feature-item i {
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.speed-chart {
  position: relative;
  z-index: 2;
}

.chart-container {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.speed-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.speed-bar {
  position: relative;
  height: 40px;
  background: var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  transition: width 2s ease-in-out;
  position: relative;
}

.speed-bar[data-speed="20"] .bar-fill {
  width: 20%;
}

.speed-bar[data-speed="50"] .bar-fill {
  width: 50%;
}

.speed-bar[data-speed="100"] .bar-fill {
  width: 100%;
}

.bar-label {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
}

.chart-title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  color: var(--primary);
}

.card-1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;

  @media (max-width: 1600px) {
    top: 10%;
  }
}

.card-2 {
  top: 60%;
  right: 5%;
  animation-delay: 2s;

  @media (max-width: 1600px) {
    right: 0;
  }
}

.card-3 {
  bottom: 20%;
  left: 8%;
  animation-delay: 4s;

  @media (max-width: 1600px) {
    left: 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Promo Section */
.promo-section {
  padding: 40px 0;
  background: var(--gray-50);
}

.promo-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.promo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--success), #059669);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.promo-text {
  flex: 1;
}

.promo-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.promo-text p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}

.promo-action {
  flex-shrink: 0;
}

/* Sections */
section {
  padding: var(--section-padding);
}

.section-header {
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

/* .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
} */

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.service-card.featured::before {
  opacity: 1;
}

.service-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.service-description {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  font-size: 13px;
  color: var(--gray-700);
}

.service-features i {
  color: var(--success);
  font-size: 12px;
  width: 16px;
}

.service-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-dark);
  gap: 12px;
}

/* Plans Section */
.plans-section {
  background: var(--gray-50);
}

.plan-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}

.plan-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.plan-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.plan-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-600);
}

.amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.period {
  font-size: 16px;
  color: var(--gray-600);
}

.plan-speed {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: var(--gray-50);
  padding: 6px 12px;
  border-radius: 50px;
  display: inline-block;
}

.plan-features {
  margin-bottom: 32px;
}

.plan-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.plan-features .feature-item:last-child {
  border-bottom: none;
}

.plan-features i {
  color: var(--success);
  font-size: 12px;
  width: 16px;
}

.migration-info {
  margin-top: 48px;
}

.info-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--info), #0891b2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.info-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.info-features i {
  color: var(--success);
  font-size: 12px;
}

/* Coverage Section */
.coverage-section {
  background: var(--white);
}

.coverage-map {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.map-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
}

.coverage-legend {
  display: flex;
  gap: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-600);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.active {
  background: var(--success);
}

.legend-dot.expanding {
  background: var(--warning);
}

.cities-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.city-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.city-item:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.city-status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.city-status.active {
  background: var(--success);
}

.city-status.expanding {
  background: var(--warning);
}

.city-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.city-info p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.city-sectors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.city-sectors span {
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coverage-stats {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.coverage-stats h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: var(--transition);
}

.stat-card:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.stat-info .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-info .stat-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coverage-checker {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.coverage-checker h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.coverage-checker p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.checker-form {
  display: flex;
  gap: 8px;
}

.checker-form .form-control {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  transition: var(--transition);
}

.checker-form .form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checker-form .btn {
  padding: 10px 16px;
  flex-shrink: 0;
}

/* Contact Section */
.contact-section {
  background: var(--gray-50);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  /* padding: 1rem; */
  /* background: white; */
  /* border: 1px solid var(--gray-200); */
  /* border-radius: var(--radius-lg); */
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  /* border-color: var(--gray-300); */
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.contact-details p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--gray-700);
}

.contact-details small {
  font-size: 12px;
  color: var(--gray-500);
}

.contact-form {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.form-control {
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  transition: var(--transition);
  background: white;
  color: var(--gray-900);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
  color: var(--gray-400);
}

/* ===================================================== */
/* ===================================================== */
/* ===================================================== */
/* About Hero Section */
/* ===================================================== */
/* ===================================================== */
/* ===================================================== */
.about-hero {}

.company-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);

  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;

    .overlay-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      color: white;
      text-align: center;

      i {
        font-size: 48px;
      }

      span {
        font-size: 16px;
        font-weight: 500;
      }
    }
  }

  &:hover .image-overlay {
    opacity: 1;
  }
}

.floating-achievements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.achievement-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  animation: float 6s ease-in-out infinite;
}

.achievement-card:first-child {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.achievement-card:last-child {
  bottom: 20%;
  left: -10%;
  animation-delay: 3s;
}

.achievement-card i {
  color: var(--primary);
  font-size: 16px;
}

/* MVV Section */
.mvv-section {
  padding: var(--section-padding);
  background: var(--white);
}

.mvv-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}

.mvv-card:hover::before {
  opacity: 1;
}

.mvv-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.mvv-card.featured::before {
  opacity: 1;
}

.mvv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin: 0 auto 24px;
}

.mvv-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.mvv-description {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700);
  text-align: left;
}

.value-item i {
  color: var(--success);
  font-size: 12px;
  width: 16px;
}

/* Story Section */
.story-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.story-text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.highlight-content p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-300);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--gray-300);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: var(--shadow-sm);
}

.timeline-item.active::before {
  background: var(--primary);
}

.timeline-year {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-mono);
  min-width: 60px;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.timeline-content p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
  background: var(--white);
}

.team-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}

.team-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 99, 235, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: white;
  color: var(--primary);
}

.team-info {
  padding: 24px;
}

.team-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.team-position {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-description {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Infrastructure Section */
.infrastructure-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tech-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.tech-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.tech-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.tech-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.tech-info p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}

.infrastructure-text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.infrastructure-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.infrastructure-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700);
}

.infrastructure-features i {
  color: var(--success);
  font-size: 16px;
  width: 20px;
}

.infrastructure-stats {
  display: flex;
  gap: 32px;
}

.infrastructure-stats .stat-item {
  text-align: center;
}

.infrastructure-stats .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
  font-family: var(--font-mono);
}

.infrastructure-stats .stat-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Certifications Section */
.certifications-section {
  padding: var(--section-padding);
  background: var(--white);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.certification-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.certification-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.cert-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin: 0 auto 20px;
}

.cert-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.cert-info p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}

/* Social Section */
.social-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.social-text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.social-programs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.program-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.program-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--success), #059669);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.program-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.program-content p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}

.social-visual {
  position: relative;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.impact-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.impact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.impact-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--success);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-mono);
}

.impact-label {
  font-size: 12px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.community-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background: var(--white);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  color: white;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.cta-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-actions .btn-primary {
  background: white;
  color: var(--primary);
  border-color: white;
}

.cta-actions .btn-primary:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
  border-color: var(--gray-100);
}

.cta-actions .btn-outline-primary {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-actions .btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-hero {
    padding: 100px 0 60px;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .story-highlights {
    gap: 16px;
  }

  .infrastructure-stats {
    justify-content: center;
    gap: 24px;
  }

  .impact-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .mvv-card,
  .team-card {
    padding: 24px;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item::before {
    left: -23px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .certification-item {
    padding: 24px 16px;
  }

  .social-programs {
    gap: 20px;
  }

  .cta-card {
    padding: 40px 24px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 80px 0 40px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .mvv-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .tech-item {
    padding: 20px;
  }

  .tech-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .floating-achievements {
    display: none;
  }
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 60px 0 20px;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand .brand-name {
  color: white;
}

.footer-brand .brand-tagline {
  color: var(--gray-400);
}

.footer-description {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-top: 16px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: var(--gray-400);
  font-size: 14px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray-400);
}

.footer-contact i {
  width: 16px;
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 20px;
}

.copyright {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gray-300);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
  }

  .hero-actions {
    justify-content: center;
  }

  .promo-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .info-features {
    justify-content: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .map-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-features {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .hero-actions {
    flex-direction: row;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-actions .btn {
    width: fit-content;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 3rem;
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-4px);
  }

  .navbar-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-top: 16px;
  }

  .navbar-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero-section {
    padding: 100px 0 40px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-card,
  .plan-card,
  .contact-form {
    padding: 24px;
  }

  .hero-visual {
    height: 300px;
  }

  .chart-container {
    padding: 24px;
  }

  .floating-card {
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility classes */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}