:root {
  --bg-deep: #05070a;
  --bg-card: rgba(20, 20, 20, 0.6);
  --verde: #8ac926; 
  --verde-glow: rgba(41, 201, 38, 0.471); /* El verde vibrante solo para el fondo */
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-color: #fff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #030507;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(41, 201, 38, 0.12) 0%, transparent 80%),
    radial-gradient(circle at 20% 20%, rgba(41, 201, 38, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(41, 201, 38, 0.07) 0%, transparent 50%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  margin: 0;
  line-height: 1.6;
}

/* --- CONTENEDOR DE ORBES DINÁMICOS --- */
.glow-container {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px); /* Desenfoque más contenido */
  opacity: 0.5;
  will-change: transform;
  transition: opacity 1s ease; /* Para el efecto de oscurecer */
}

/* Clase para oscurecer el fondo en Impacto (Negro Total) */
body.impact-darken {
  background-color: #000 !important;
  transition: background-color 1s ease;
}

body.impact-darken .glow-orb {
  opacity: 0;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15vw, -5vh) scale(1.1); }
  100% { transform: translate(-5vw, 15vh) scale(0.9); }
}

.orb-1 { width: 25vw; height: 25vw; background: rgba(41, 201, 38, 0.471); top: 10%; left: 10%; animation: orbFloat 20s infinite alternate ease-in-out; }
.orb-2 { width: 20vw; height: 20vw; background: rgba(41, 201, 38, 0.471); bottom: 15%; right: 10%; animation: orbFloat 28s infinite alternate-reverse ease-in-out; }
.orb-3 { width: 15vw; height: 15vw; background: rgba(41, 201, 38, 0.471); top: 50%; left: 40%; animation: orbFloat 35s infinite alternate ease-in-out; }

section {
  background: transparent !important;
  border: none !important;
  padding: 100px 0 !important;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(5, 7, 10, 0.8);
  color: #fff;
  padding: 15px 0;
  z-index: 1000;
  transition:
    transform 0.3s ease-in-out,
    background-color 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 1.6em;
  vertical-align: middle;
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-links {
  transition: all 0.3s ease-out;
}

.nav-links ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a:not(.btn-mysatellitear) {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  position: relative;
  padding: 5px 0;
}

.nav-links a:not(.btn-mysatellitear)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #8ac926;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.nav-links a:not(.btn-mysatellitear)::hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-mysatellitear {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #8ac926;
  border-radius: 50px;
  color: #8ac926;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin-left: 40px;
}

.btn-mysatellitear:hover {
  background-color: #8ac926;
  color: #000;
  box-shadow: 0 0 15px rgba(41, 201, 38, 0.471);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 5rem;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2rem;
    padding-left: 2rem;
  }

  .nav-links a:not(.btn-mysatellitear) {
    font-size: 1.4rem;
  }

  .btn-mysatellitear {
    margin-top: 15px;
    width: auto;
    text-align: center;
    font-size: 1rem;
    margin-left: 0;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 4.5s linear;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide.is-active img {
  transform: scale(1.08);
}

.hero:not(.hero--ready) .hero-slide:first-child {
  opacity: 1;
}

.hero-overlay {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 100px 0 26px;
}

.hero-content--top,
.hero-cards {
  position: relative;
  z-index: 6;
  width: min(1200px, 80vw);
  margin: 0 auto;
}

.hero-content--top {
  max-width: 920px;
  padding: 25px 30px;
  text-align: center;
  border-radius: 20px;

  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.7),
    rgba(10, 10, 10, 0.85)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-title,
.hero-subtitle {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-content--top .hero-title {
  font-size: 36px;
  line-height: 1.15;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content--top .hero-subtitle {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 12px 0 0;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hero-card {
  background: linear-gradient(
    135deg,
    rgba(40, 40, 40, 0.6),
    rgba(15, 15, 15, 0.9)
  );

  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;

  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(16px) saturate(110%);
  -webkit-backdrop-filter: blur(16px) saturate(110%);

  padding: 30px 20px 25px;
  color: #fff;
  position: relative;
  min-height: 130px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
  border-top-color: rgba(255, 255, 255, 0.25);
}

.hero-card-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 38px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-card-title {
  margin: 10px 0 0;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
}

.hero-card-1 {
  border-bottom-color: #8ac9268d;
  border-right-color: #8ac92640;
}
.hero-card-1 .hero-card-num {
  background: #8ac926;
  color: #000000;
}

.hero-card-2 {
  border-bottom-color: #8ac9268d;
  border-right-color: #8ac92640;
}
.hero-card-2 .hero-card-num {
  background: #8ac926;
  color: #000000;
}

.hero-card-3 {
  border-bottom-color: #8ac9268d;
  border-right-color: #8ac92640;
}
.hero-card-3 .hero-card-num {
  background: #8ac926;
  color: #000000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }
  .hero-overlay {
    min-height: auto;
    padding: 110px 0 40px;
    gap: 25px;
  }
  .hero-cards {
    grid-template-columns: 1fr;
  }
  .hero-card {
    min-height: unset;
  }
  .hero-content--top {
    max-width: none;
  }
  .hero-content--top .hero-title {
    font-size: 30px;
  }
  .hero-content--top .hero-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .hero-content--top {
    width: 94vw;
    padding: 20px 15px;
  }
  .hero-content--top .hero-title {
    font-size: 26px;
  }
  .hero-card {
    padding: 25px 16px 20px;
  }
  .hero-card-title {
    font-size: 20px;
  }
  .hero-card-text {
    font-size: 15px;
  }
}
.services-section {
  background: #000;
  color: #fff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: visible;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(to bottom, var(--bg-deep) 0%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 80%, var(--bg-deep) 100%),
    url('../img/servicios/servicio.webp') center/cover no-repeat;
  filter: saturate(1.2) contrast(1.1);
  opacity: 0.6;
}

.services-section > * {
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  display: grid;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
}

.services-title {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.15;
  font-weight: 700;
}

.services-title .tab {
  color: var(--verde);
}

.services-description-intro {
  color: var(--texto-gris, #ccc);
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  max-width: 70ch;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

.services-three {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4rem;
  align-items: start;
}

/* --- TARJETA PRINCIPAL (Aire, Agua, Suelo) --- */
.service-card {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
  border: 2px solid var(--verde);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 
    inset 0 0 15px rgba(138, 201, 38, 0.05),
    0 15px 35px rgba(0, 0, 0, 0.6);
  padding: 3.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(138, 201, 38, 0.1);
  border-color: var(--verde);
}

/* --- CABECERA DE LA TARJETA --- */
.service-card-header {
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-title {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
}

/* --- ICONO FLOTANTE --- */
.service-card-float {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #000;
  border: 3px solid var(--verde);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
  z-index: 2;
}

.service-card-float-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

/* --- LISTA DE ITEMS (Subtítulos) --- */
.service-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-item-simple {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: #eaeaea;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: left;
  transition:
    transform 0.2s ease,
    background 0.2s ease;

  display: flex;
  align-items: center;

  will-change: transform;
}

.service-item-simple::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--verde);
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  box-shadow: 0 0 5px var(--verde);
}

.service-item-simple:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(138, 201, 38, 0.4);
  color: #fff;
  transform: translateX(4px);
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 1100px) {
  .services-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .services-three {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-card {
    padding-top: 3.5rem;
  }
}
#nosotros {
  background: #000;
  color: #fff;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.about-us-wrapper.simple-cards .about-us-cards {
  width: min(1200px, 95%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
  
  /* El rectángulo gradiente que pediste */
  background: linear-gradient(135deg, rgba(138, 201, 38, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(138, 201, 38, 0.2);
  box-shadow: 0 0 40px rgba(138, 201, 38, 0.1);
  backdrop-filter: blur(10px);
}

.about-us-wrapper.simple-cards .about-card {
  background: #0b0b0b;
  border: 2px solid var(--verde);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

.about-us-wrapper.simple-cards .about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.about-us-wrapper.simple-cards .about-card-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-us-wrapper.simple-cards .about-card-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.about-us-wrapper.simple-cards .about-title {
  margin: 0;
  line-height: 1.2;
  color: #fff;
  font-size: 25px;
}

.about-us-wrapper.simple-cards .about-title .highlight-text {
  color: var(--verde) !important;
  font-weight: 700;
}

.about-us-wrapper.simple-cards .about-card-right {
  position: relative;
}

.about-us-wrapper.simple-cards .about-card-right p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
  color: #ccc;
}

.about-us-wrapper.simple-cards .about-card:not(.expanded) .about-card-right {
  max-height: 6.6rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
}

.about-us-wrapper.simple-cards .about-card .about-card-right {
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    -webkit-mask-image 0.25s ease,
    mask-image 0.25s ease;
}

.about-us-wrapper.simple-cards .about-card.expanded .about-card-right {
  max-height: 1000px;
  -webkit-mask-image: none;
  mask-image: none;
}

@media (max-width: 992px) {
  .about-us-wrapper.simple-cards .about-us-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-us-wrapper.simple-cards .about-us-cards {
    grid-template-columns: 1fr;
  }

  .about-us-wrapper.simple-cards .about-card {
    border-radius: 16px;
    padding: 0.9rem 1rem;
  }

  .about-us-wrapper.simple-cards .about-card-icon {
    width: 40px;
    height: 40px;
  }

  .about-us-wrapper.simple-cards .about-title {
    font-size: 1.05rem;
  }

  .about-us-wrapper.simple-cards .about-card-right p {
    font-size: 0.95rem;
  }
}
.servicios-principales-section {
  position: relative;
  padding: 120px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  background-image:
    linear-gradient(to bottom, var(--bg-deep) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.5) 80%, var(--bg-deep) 100%),
    url('/img/serviciosGenerales/servicios.webp');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

@media (min-width: 1024px) {
  .servicios-principales-section {
    background-attachment: fixed;
  }
}

.servicios-principales-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === ENCABEZADO DE SECCIÓN === */
.servicios-header {
  text-align: center;
  margin-bottom: 70px;
}

.servicios-principales-title {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.servicios-principales-title .highlight-text {
  color: var(--verde, #8ac926);
  display: block;
}

.servicios-principales-description {
  font-size: 18px;
  line-height: 1.55;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
}

/* === GRID DE TARJETAS === */
.servicios-principales-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

/* === TARJETAS BASE === */
.service-principal-card {
  background: #000;
  border: 2px solid var(--verde);
  border-radius: 20px;
  padding: 35px 20px 25px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 310px;
}

.service-principal-card:hover {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Elevación general en hover o activo */
.service-principal-card:hover,
.service-principal-card.active {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

/* Numerito superior */
.service-principal-number-wrapper {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: bold;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Imagen circular */
.service-principal-image-container {
  width: 110px;
  height: 110px;

  overflow: hidden;

  margin: 0 auto 20px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.service-principal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Título */
.service-principal-name {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
  transition: all 0.3s ease;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

/* === EFECTO ACORDEÓN (Texto Oculto JS) === */
.service-principal-description-slide {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  padding-top: 0;
  margin-top: 0;
  color: #ccc;
  text-align: justify;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.service-principal-card.active .service-principal-description-slide {
  max-height: 700px;
  opacity: 1;
  visibility: visible;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-principal-description-slide p {
  transform: translateY(10px);
  opacity: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  margin-bottom: 10px;
}

.service-principal-description-slide p:last-child {
  margin-bottom: 0;
}

.service-principal-card.active .service-principal-description-slide p {
  transform: translateY(0);
  opacity: 1;
}

/* 1 */
.card-blue:hover,
.card-blue.active {
  border-color: #8ac926;
}
.card-blue:hover .service-principal-image-container,
.card-blue.active .service-principal-image-container {
  border-color: #8ac926;
}
.card-blue:hover .service-principal-number-wrapper,
.card-blue.active .service-principal-number-wrapper {
  background: #8ac926;
  color: #fff;
}

/* 2 */
.card-gold:hover,
.card-gold.active {
  border-color: #8ac926;
}
.card-gold:hover .service-principal-image-container,
.card-gold.active .service-principal-image-container {
  border-color: #8ac926;
}
.card-gold:hover .service-principal-number-wrapper,
.card-gold.active .service-principal-number-wrapper {
  background: #8ac926;
  color: #fff;
}

/* 3 */
.card-green:hover,
.card-green.active {
  border-color: var(--verde, #8ac926);
}
.card-green:hover .service-principal-image-container,
.card-green.active .service-principal-image-container {
  border-color: var(--verde, #8ac926);
}
.card-green:hover .service-principal-number-wrapper,
.card-green.active .service-principal-number-wrapper {
  background: var(--verde, #8ac926);
  color: #000;
}

/* 4 */
.card-purple:hover,
.card-purple.active {
  border-color: #8ac926;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}
.card-purple:hover .service-principal-image-container,
.card-purple.active .service-principal-image-container {
  border-color: #8ac926;
}
.card-purple:hover .service-principal-number-wrapper,
.card-purple.active .service-principal-number-wrapper {
  background: #8ac926;
  color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .servicios-principales-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .servicios-principales-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .servicios-principales-grid {
    grid-template-columns: 1fr;
  }
  .servicios-principales-title {
    font-size: 28px;
  }
  .servicios-principales-description {
    font-size: 16px;
  }
}
.contacto-section {
  position: relative;
  background-color: #050a10;
  padding: 80px 0;
  overflow: hidden;

  background-image:
    linear-gradient(to bottom, rgba(5, 10, 16, 0.9), rgba(5, 10, 16, 0.85)),
    url('../img/contacto/fondocontact.webp');
  background-size: cover;
  background-position: center;
}

.contacto-section .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.contacto-title,
.contacto-description {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* === TÍTULO 60PX (FORZADO) === */
.contacto-title {
  font-size: 60px !important;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.1;
}

h2.contacto-title span.highlight-text {
  color: #8ac926 !important;
}

/* === SUBTÍTULO 18PX (FORZADO) === */
.contacto-description {
  font-size: 18px !important;
  color: #b0b0b0;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 300;
}

/* Layout Principal */
.contacto-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

/* Imagen Izquierda */
.contacto-persona {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.contacto-persona img {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
  object-fit: cover;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 10px 15px 40px rgba(0, 0, 0, 0.5);
  filter: brightness(0.9);
}

/* Columna Derecha */
.contacto-form-column {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

/* Formulario */
#contactForm {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.form-title {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: left;
  border-left: 4px solid #8ac926;
  padding-left: 15px;
  line-height: 1;
}

/* Inputs y Labels */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8ac926;
  background-color: rgba(0, 0, 0, 0.6);
  outline: none;
  box-shadow: 0 0 0 4px rgba(138, 201, 38, 0.1);
}

/* Botón */
.submit-button {
  background: linear-gradient(90deg, #8ac926, #7cb322);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(138, 201, 38, 0.3);
  background: #9be032;
}

.g-recaptcha {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contacto-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contacto-title {
    font-size: 36px !important;
  }
  .contacto-content {
    flex-direction: column;
    align-items: center;
  }
  .contacto-persona {
    display: none !important;
  }
  .contacto-form-column {
    padding: 0;
    width: 100%;
  }
  #contactForm {
    max-width: 100%;
    padding: 30px 20px;
  }
}
.main-footer-section {
  position: relative;
  background: 
    linear-gradient(to bottom, #030507 0%, rgba(0, 0, 0, 0.4) 15%, rgba(0, 0, 0, 0.4) 85%, #000 100%),
    url('/img/foot/foot.webp') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  animation: backgroundPanVertical 40s infinite alternate linear;
  color: white;
  overflow: hidden;
  padding-top: 100px; /* Un poco más de espacio para el degradado */
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.footer-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 20px;
  margin-bottom: 30px;
}

.footer-left {
  flex: 1;
  min-width: 280px;
  padding-right: 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-company-name {
  display: block;
  font-size: 2.5em;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-company-name:hover {
  color: #8ddc24;
}

.footer-slogan {
  font-size: 1em;
  color: #ccc;
  margin: 0;
  line-height: 1.5;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-right {
  flex: 1;
  min-width: 180px;
  padding-left: 20px;
  text-align: right;
}

.footer-right h3 {
  font-size: 1.5em;
  color: #8ddc24;
  margin-bottom: 15px;
}

.footer-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-right li {
  margin-bottom: 10px;
}

.footer-right a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

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

.footer-bottom-copyright {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 20px;
}

@keyframes backgroundPanVertical {
  0% {
    background-position: center 0%;
  }
  100% {
    background-position: center 100%;
  }
}

@media (max-width: 768px) {
  .main-footer-section {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .footer-content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
  }

  .footer-left,
  .footer-right {
    flex-basis: 100%;
    text-align: center;
    padding: 0;
    min-width: unset;
  }

  .footer-company-name {
    font-size: 2em;
  }

  .footer-slogan {
    font-size: 0.9em;
  }

  .footer-right h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .footer-right a {
    font-size: 1em;
  }

  .footer-bottom-copyright {
    font-size: 0.8em;
  }
}
/* === BOTON FLOTANTE DE IDIOMA === */
.lang-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fab-toggle {
  background-color: transparent;
  color: #000000;
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: var(--sombra);
  transition: transform 0.3s ease;
}

.fab-toggle:hover {
  transform: rotate(90deg);
}

.fab-options {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
  animation: fadeIn 0.3s ease forwards;
}

.fab-options button {
  font-size: 1.3rem;
  background: #ffffff1f;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.fab-options button:hover {
  transform: scale(1.1);
}

/* === CAPA OVERLAY PARA DESENFOQUE === */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  z-index: 1500;
  transition: opacity 0.4s ease;
}

body.fab-active::before {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* --- ESTRUCTURA BASE (FLEX MODERNO) --- */
.sat-f-row {
  width: 100%;
  display: flex !important;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.sat-f-text,
.sat-f-image {
  box-sizing: border-box;
}

.sat-f-text {
  width: 45%;
}

.sat-f-image {
  width: 50%;
}

/* Invertido */
.sat-f-reverse {
  flex-direction: row-reverse;
}

/* --- ESTILOS VISUALES DARK --- */
.platform-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 60px auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 50px;
  width: fit-content;
}

.platform-tab-btn {
  background: transparent;
  border: none;
  color: #ccc;
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.platform-tab-btn.active {
  background: #8ac926 !important;
  color: #000 !important;
  box-shadow: 0 0 20px rgba(138, 201, 38, 0.4);
}

.platform-icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(138, 201, 38, 0.1);
  border: 1px solid #8ac926;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8ac926;
  margin-bottom: 20px;
}

.sat-f-text h3 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 15px;
}

.sat-f-text p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* --- MARCO DE IMAGEN --- */
.platform-img-frame {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
}

/* --- SLIDER CORREGIDO --- */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
}

/* imágenes del carrusel */
.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* imagen activa */
.slider-img.active {
  opacity: 1;
  position: relative;
}

/* --- BOTONES --- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* --- IMÁGENES GENERALES --- */
.platform-img-frame img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* --- VISIBILIDAD DE TABS --- */
.platform-view {
  display: none;
}

.platform-view.active {
  display: block;
}

/* --- RESPONSIVE --- */
@media (max-width: 850px) {
  .sat-f-row {
    flex-direction: column;
    text-align: center;
  }

  .sat-f-text,
  .sat-f-image {
    width: 100%;
  }

  .platform-icon-circle {
    margin: 0 auto 20px;
  }
}
/* --- SECCIÓN BASE --- */
.impact-section {
  position: relative;
  padding: 100px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  background-image:
  
    linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(4, 7, 10, 0.98)),
    url('../img/impact.webp');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.impact-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 10;
}

.impact-main-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.impact-main-title .highlight-text {
  color: #8ac926;
}

/* --- CONTENEDOR DEL DIAGRAMA --- */
.impact-diagram-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 700px;
  z-index: 6;
}

.impact-diagram {
  position: relative;
  width: 500px;
  height: 500px;
  --speed: 30s;
}

/* Anillo Liquid Glass */
.impact-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    #8ac926 0deg 60deg,
    #a0a0a0 60deg 120deg,
    #ffffff 120deg 180deg,
    #3b71ca 180deg 240deg,
    #ff595e 240deg 300deg,
    #ffca3a 300deg 360deg
  );
  mask: radial-gradient(transparent 48%, black 49%);
  -webkit-mask: radial-gradient(transparent 48%, black 49%);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  animation: impactRotate var(--speed) linear infinite;
  transition: opacity 0.5s ease;
}

/* --- NODOS ORBITALES (ICONOS Y TEXTOS) --- */
.impact-icon-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
  margin: -42.5px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  z-index: 20;
  backdrop-filter: blur(8px);
  cursor: pointer;
  animation: impactOrbit var(--speed) linear infinite;
  transition: all 0.4s ease;
}

.impact-icon-circle i {
  animation: impactInvert var(--speed) linear infinite;
}

.impact-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Crucial para centrar letras */
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  z-index: 15;
  animation: impactOrbitLabel var(--speed) linear infinite;
  transition: all 0.7s ease;
}

/* --- VARIABLES DE ÁNGULO --- */
.node-1 {
  --angle: 30deg;
  color: #8ac926;
}
.node-2 {
  --angle: 90deg;
  color: #a0a0a0;
}
.node-3 {
  --angle: 150deg;
  color: #ffffff;
}
.node-4 {
  --angle: 210deg;
  color: #3b71ca;
}
.node-5 {
  --angle: 270deg;
  color: #ff595e;
}
.node-6 {
  --angle: 330deg;
  color: #ffca3a;
}

/* --- INTERACTIVIDAD (HOVER) --- */
.impact-diagram:hover .impact-ring {
  opacity: 0.4;
}
.impact-diagram:hover .impact-icon-circle:not(:hover) {
  opacity: 0.3;
  filter: blur(2px);
}
.impact-diagram:hover .impact-label {
  opacity: 0.2;
}

.impact-icon-circle:hover {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: scale(1.2);
  border-color: currentColor;
  box-shadow: 0 0 30px currentColor;
  z-index: 30;
}

.impact-icon-circle:hover + .impact-label,
.impact-label.highlight-active {
  opacity: 1 !important;
  color: #fff !important;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%) scale(1.1);
}

/* --- GLOBO CENTRAL --- */
.impact-center-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background-image: url('../img/tierra.webp');
  background-size: cover;
  box-shadow:
    inset -10px -10px 50px #000,
    0 0 30px rgba(0, 0, 0, 0.5);
  z-index: 5;
  transition: all 0.6s ease;
}

/* --- MODAL (ARREGLADO Y ELEGANTE) --- */
.impact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.impact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.impact-modal-box {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.impact-modal-overlay.active .impact-modal-box {
  transform: translateY(0) scale(1);
  border-color: var(--modal-accent, #8ac926);
}

.impact-modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  background: var(--modal-accent, #8ac926);
  color: #000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.impact-modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.impact-modal-body p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.impact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.impact-modal-close:hover {
  background: #ff595e;
  transform: rotate(90deg);
}

/* --- ANIMACIONES --- */
@keyframes impactRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes impactOrbit {
  from {
    transform: rotate(var(--angle)) translateY(-240px);
  }
  to {
    transform: rotate(calc(var(--angle) + 360deg)) translateY(-240px);
  }
}

@keyframes impactOrbitLabel {
  from {
    /* Incluimos translate(-50%, -50%) al inicio de cada paso */
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-330px)
      rotate(calc(var(--angle) * -1));
  }
  to {
    transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg))
      translateY(-320px) rotate(calc(var(--angle) * -1 - 360deg));
  }
}

@keyframes impactInvert {
  from {
    transform: rotate(calc(var(--angle) * -1));
  }
  to {
    transform: rotate(calc(var(--angle) * -1 - 360deg));
  }
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 768px) {
  .impact-diagram {
    transform: scale(0.7);
  }
  .impact-diagram-wrapper {
    min-height: 500px;
  }
  .impact-main-title {
    font-size: 32px;
  }
}
/* --- SECCION MYSATELLITEAR --- */
.mysat-section {
  position: relative;
  padding: 100px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  

  /* === IMAGEN DE FONDO CON FILTRO OSCURO === */
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.622), rgba(0, 0, 0, 0.734)),
    url('../img/contacto/fondocontact.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mysat-section .container {
  position: relative;
  z-index: 2;
}

.mysat-header {
  text-align: center;
  margin-bottom: 80px;
}

.mysat-title {
  font-size: 60px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #fff;
}

.mysat-title .highlight-text {
  color: #8ac926;
}

.mysat-subtitle {
  font-size: 18px;
  line-height: 1.55;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
}

.mysat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

/* Tarjeta Base */
.mysat-card {
  background: rgba(0, 0, 0, 0.173);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  backdrop-filter: blur(5px);
}

.mysat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

/* Icono */
.mysat-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;

  background: -webkit-linear-gradient(#fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Título de tarjeta */
.mysat-card-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

/* Descripción */
.mysat-card-desc {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Tags */
.mysat-card-tags {
  list-style: none;
  padding: 15px 0 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #888;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mysat-card-tags li::after {
  content: '•';
  margin-left: 8px;
  opacity: 0.4;
}
.mysat-card-tags li:last-child::after {
  content: '';
}

/* 1. Genérico (Azul) */
.mysat-card-generic:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}
.mysat-card-generic .mysat-card-icon {
  background: -webkit-linear-gradient(#60a5fa, #3b82f6);
  -webkit-background-clip: text;
}

/* 2. Gobierno (Dorado) */
.mysat-card-gov:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}
.mysat-card-gov .mysat-card-icon {
  background: -webkit-linear-gradient(#fbbf24, #f59e0b);
  -webkit-background-clip: text;
}

/* 3. Empresa (Verde ) */
.mysat-card-company:hover {
  border-color: #8ac926;
  box-shadow: 0 10px 40px rgba(138, 201, 38, 0.15);
}
.mysat-card-company .mysat-card-icon {
  background: -webkit-linear-gradient(#a3e635, #8ac926);
  -webkit-background-clip: text;
}

/* 4. ONG (Violeta) */
.mysat-card-ngo:hover {
  border-color: #8b5cf6;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}
.mysat-card-ngo .mysat-card-icon {
  background: -webkit-linear-gradient(#a78bfa, #8b5cf6);
  -webkit-background-clip: text;
}

/* --- BOTÓN CENTRAL GRANDE --- */
.mysat-action-container {
  text-align: center;
  margin-top: 40px;
}

.mysat-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8ac926;
  color: #000;
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px rgba(138, 201, 38, 0.4);
}

.mysat-main-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(138, 201, 38, 0.7);
  background: #99d638;
}

.mysat-main-btn i {
  transition: transform 0.3s ease;
}
.mysat-main-btn:hover i {
  transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .mysat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mysat-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .mysat-grid {
    grid-template-columns: 1fr;
  }
  .mysat-title {
    font-size: 24px;
  }
  .mysat-main-btn {
    width: 100%;
    justify-content: center;
  }
}
/* --- SECCION EVIDENCIA SATELITAL --- */
.evidencia-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  min-height: 500px;
}

.evidencia-sidebar {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.evidencia-nav-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  color: #fff;
  position: relative;
}

.evidencia-nav-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #8ac926;
}

.evidencia-nav-item.active {
  background: rgba(138, 201, 38, 0.1);
  border-color: #8ac926;
  box-shadow: 0 0 20px rgba(138, 201, 38, 0.1);
}

.nav-icon {
  font-size: 1.8rem;
  color: #8ac926;
}

.nav-text h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.nav-text span {
  font-size: 0.85rem;
  color: #aaa;
}

.badge-soon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #444;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Panel de Contenido */
.evidencia-content {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  overflow-y: auto;
  max-height: 600px;
}

.evidencia-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.evidencia-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

.item-tag {
  color: #8ac926;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.evidencia-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.evidencia-item p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.item-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.item-link:hover {
  color: #8ac926;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .evidence-header h2 {
    font-size: 2.2rem;
  }
}

/* Platform Features List */
.sat-features-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.sat-features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.sat-features-list li i {
  color: #a3e635;
  margin-right: 12px;
  font-size: 1.1rem;
}

/* Typewriter blinking cursor */
.typewriter-effect::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: #a3e635;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 900px) {
  .evidencia-container {
    flex-direction: column;
  }
  .evidencia-sidebar {
    flex: none;
  }
}

/* --- NEW HERO STYLES --- */
.hero-new {
  background-color: #041b10; /* dark green background */
  padding: 140px 0 60px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-new-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-new-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.hero-new-content {
  flex: 1;
  max-width: 600px;
}
.hero-new-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.highlight-green {
  color: #a3e635; /* bright green */
}
.hero-new-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 40px;
}
.hero-new-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-new-buttons a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  min-width: 260px;
  transition: all 0.3s ease;
}
.btn-hero-primary {
  background-color: #a3e635;
  color: #000;
}
.btn-hero-primary:hover {
  background-color: #8ccf2e;
}
.btn-hero-secondary {
  background-color: transparent;
  border: 1px solid #233e2b;
  color: #fff;
}
.btn-hero-secondary:hover {
  background-color: rgba(163, 230, 53, 0.1);
}
.btn-text {
  display: flex;
  flex-direction: column;
}
.btn-text strong {
  font-size: 1rem;
  font-weight: 600;
}
.btn-text span {
  font-size: 0.8rem;
  opacity: 0.8;
}
.hero-new-buttons i {
  margin-left: 15px;
}

.hero-new-image {
  flex: 1;
}
.hero-new-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
}

.hero-new-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-item i {
  color: #a3e635;
  font-size: 1.5rem;
}
.feature-item span {
  font-size: 0.9rem;
  color: #d1d5db;
  line-height: 1.4;
}

/* responsive hero */
@media (max-width: 900px) {
  .hero-new {
    padding: 100px 0 40px 0;
  }
  .hero-new-grid {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .hero-new-content {
    max-width: 100%;
  }
  .hero-new-buttons {
    justify-content: center;
  }
  .hero-new-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-new-title {
    font-size: 2.2rem;
  }
  .hero-new-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .hero-new-features {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 30px;
  }
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .hero-new-buttons a {
    width: 100%;
    min-width: unset;
  }
}

