/* ======================================
   DYSCO EP – MAIN GLOBAL CSS
   Identidad basada en verde corporativo
====================================== */

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', 'Inter', sans-serif;
}

body {
  background: #0B1110;
  color: #FFFFFF;
  line-height: 1.6;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ======================================
   HEADER
====================================== */

.main-header {
  background: rgba(6, 15, 14, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  position: fixed;
  width: 100%;
  padding: 18px 0;

  border-bottom: 1px solid rgba(18,161,80,0.18);

  box-shadow: 0 10px 35px rgba(0,0,0,0.45);
  z-index: 1000;

  transition: all 0.3s ease;
}




.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 42px;
}

.main-nav a {
  position: relative;
  color: #9FB7AD;
  text-decoration: none;
  margin: 0 18px;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #12A150;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

.btn-header {
  background: linear-gradient(135deg, #12A150, #0E8A44);
  padding: 10px 24px;
  border-radius: 10px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 12px 30px rgba(18,161,80,0.35);
  transition: all 0.3s ease;
}

.btn-header:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(18,161,80,0.55);
}







.logo-wrapper {
  position: relative;
}

.logo-wrapper img {
  height: 75px;
  position: absolute;
  top: -18px;
  left: 0;
  padding: 0;
  background: transparent;  /* 👈 quitamos fondo verde */
  border-radius: 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}













/* ======================================
   HERO
====================================== */


.hero {
  min-height: 100vh;
  height: auto;
  position: relative;
  overflow: hidden; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}


.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11,17,16,0.35),
    rgba(11,17,16,0.45)
  );
  z-index: 2;
}


.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1150px;
  width: 92%;
}


.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  color: #9FB7AD;
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-primary {
  background: #12A150;
  padding: 13px 28px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  margin-right: 12px;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #0E8A44;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid #12A150;
  padding: 13px 28px;
  border-radius: 8px;
  color: #12A150;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background: #12A150;
  color: #FFFFFF;
}

/* ======================================
   SERVICES
====================================== */

.services {
  padding: 90px 0 60px 0;
  background: #0F1A18;
}

.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.service-card {
  background: #111C1A;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #1B2A27;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #12A150;
  box-shadow: 0 10px 25px rgba(18, 161, 80, 0.15);
}

.service-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #12A150;
}

.service-card p {
  color: #9FB7AD;
  margin-bottom: 15px;
}

.service-card a {
  color: #12A150;
  text-decoration: none;
  font-weight: 500;
}

.service-card a:hover {
  text-decoration: underline;
}

/* ======================================
   FOOTER
====================================== */


.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-grid h4 {
  margin-bottom: 18px;
  font-size: 16px;
  color: #12A150;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 10px;
  color: #9FB7AD;
}

.footer-grid p {
  color: #9FB7AD;
}

copyright {
  margin-top: 20px;
  color: #4D6A60;
}

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 900px) {

  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }


}









/* ======================================
   FOOTER LINKS & SOCIAL
====================================== */

.footer-grid a {
  color: #9FB7AD;
  text-decoration: none;
  transition: 0.3s;
}

.footer-grid a:hover {
  color: #12A150;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-links a {
  font-weight: 500;
}

.social-links a:hover {
  transform: translateX(4px);
}











/* ======================================
   MAPA EMBEBIDO
====================================== */

.map-container {
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #1B2A27;
}

.map-container iframe {
  width: 100%;
  height: 180px;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}




/* ======================================
   COOKIE CONSENT
====================================== */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: 90%;
  max-width: 900px;
  background: rgba(15, 26, 24, 0.98);
  border: 1px solid #1B2A27;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transition: transform 0.6s ease;
  z-index: 9999;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  font-size: 14px;
  color: #9FB7AD;
  line-height: 1.5;
}

.cookie-content a {
  color: #12A150;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-cookie-accept {
  background: #12A150;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-cookie-accept:hover {
  background: #0E8A44;
}

.btn-cookie-reject {
  background: transparent;
  border: 1px solid #12A150;
  color: #12A150;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-cookie-reject:hover {
  background: #12A150;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}













/* ======================================
   ORBCOMM PLACA PREMIUM (FIX PRO)
====================================== */

.orbcomm-section {
  background: linear-gradient(180deg, #061312, #02100F);
  padding: 120px 0 100px 0;
  position: relative;
  z-index: 2;
}

.orbcomm-flex {
  display: flex;
  align-items: center;   /* 👈 clave */
  justify-content: space-between;
  gap: 80px;
}

.orbcomm-text {
  flex: 1;
  max-width: 600px;
}

.orbcomm-text h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.orbcomm-text h2 span {
  color: #12A150;
}

.orbcomm-text p {
  color: #9FB7AD;
  margin-bottom: 30px;
  line-height: 1.7;
}

.orbcomm-badge {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.orbcomm-badge img {
  width: 420px;
  max-width: 100%;
  transform: translateY(-80px);  /* 👈 efecto flotante elegante */
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6));
}




/* ======================================
   ORBCOMM VIDEO BACKGROUND
====================================== */

.orbcomm-section {
  position: relative;
  overflow: hidden;
}

.orbcomm-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.orbcomm-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: rgba(2,16,15,0.55);  /* antes 0.85 */
  z-index: 2;
}

.orbcomm-flex {
  position: relative;
  z-index: 3;
}




/* ======================================
   HERO INTERNO – FORMATO PÁGINAS
   (NO modifica hero principal)
====================================== */

.hero-interno {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: 140px;   /* 👈 espacio fijo debajo del menú */
  padding-bottom: 80px; /* 👈 aire inferior */

  text-align: center;
  overflow: hidden;
}


/* Imagen FULL pantalla */
.hero-interno-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Caja glass */
.hero-interno-box {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 1300px;   /* antes 850px */

  padding: 80px 80px;  /* más aire lateral */

  background: rgba(15, 26, 24, 0.55);


  border-radius: 22px;
  border: 1px solid rgba(18,161,80,0.25);

  box-shadow: 0 40px 80px rgba(0,0,0,0.65);
}



/* Solo activar blur en pantallas grandes */
@media (min-width: 901px){
  .hero-interno-box{
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(15, 26, 24, 0.45);
  }
}


/* Título */
.hero-interno-box h1 {
  font-size: 46px;
  margin-bottom: 25px;
  color: #12A150;
}

/* Texto */
.hero-interno-box p {
  font-size: 18px;
  color: #CFE5DC;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Botón WhatsApp */
.btn-whatsapp-large {
  display: inline-block;
  background: #12A150;
  color: #ffffff;
  padding: 18px 42px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-whatsapp-large:hover {
  background: #0E8A44;
  transform: translateY(-3px);
}




/* ======================================
   SERVICES VIDEO BACKGROUND
====================================== */

.services-video {
  position: relative;
  overflow: hidden;
}

.services-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background: rgba(5,17,16,0.55);  /* antes 0.82 */
  z-index: 2;
}

.services-video .container {
  position: relative;
  z-index: 3;
}





/* ======================================
   HERO CONTENT GLASS LIGHT
====================================== */

.hero-content {
  background: rgba(5, 17, 16, 0.35); /* muy ligero */
  backdrop-filter: blur(6px); /* blur suave */
  -webkit-backdrop-filter: blur(6px);
  padding: 50px 60px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}











/* ======================================
   SERVICE TITLE LABEL STYLE
====================================== */

.service-card h3 {
  display: inline-block;
  background: linear-gradient(90deg, #12A150, #0E8A44);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(18, 161, 80, 0.25);
}




/* ======================================
   CONTACTO
====================================== */

.contact-section {
  padding: 160px 0 120px 0;
  background: #0F1A18;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}

.contact-form-box {
  background: rgba(15, 26, 24, 0.65);
  backdrop-filter: blur(12px);
  padding: 50px;
  border-radius: 16px;
  border: 1px solid rgba(18,161,80,0.25);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.contact-form-box h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #12A150;
}

.contact-form-box p {
  margin-bottom: 30px;
  color: #CFE5DC;
}

.contact-form-box label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #9FB7AD;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #1B2A27;
  background: #111C1A;
  color: #ffffff;
  font-size: 14px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: #12A150;
}

.btn-contact {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #12A150, #0E8A44);
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(18,161,80,0.4);
}

.contact-divider {
  height: 1px;
  background: rgba(18,161,80,0.2);
  margin: 40px 0;
}

.contact-success {
  background: rgba(18,161,80,0.15);
  border: 1px solid #12A150;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 14px;
}

.contact-map-box h2 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #12A150;
}

.map-large {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #1B2A27;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  margin-bottom: 20px;
}

.map-large iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-address {
  color: #9FB7AD;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-large iframe {
    height: 300px;
  }
}



.contact-grid {
  position: relative;
  z-index: 2;
}














.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-map-card {
  background: rgba(15, 26, 24, 0.65);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 18px;
  border: 1px solid rgba(18,161,80,0.25);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.map-large iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 12px;
  margin-bottom: 20px;
}

.contact-address {
  color: #CFE5DC;
  font-size: 15px;
  line-height: 1.6;
}




.contact-emails {
  margin-top: 20px;
  color: #CFE5DC;
  font-size: 15px;
  line-height: 1.6;
}

.contact-emails a {
  color: #12A150;
  text-decoration: none;
}

.contact-emails a:hover {
  text-decoration: underline;
}



/* ===== FIX CENTRAR TITULOS SERVICIOS ===== */

.service-card {
    text-align: center;
}

.service-card h3 {
    display: inline-block;
    margin: 20px auto 10px auto;
    text-align: center;
}


/* ================= HERO FLEX ================= */

.hero-content-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.hero-text{
  flex:1;
}

.hero-trust{
  flex:0 0 260px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-trust img{
  max-width:260px;
  height:auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}

/* RESPONSIVE */
@media (max-width: 992px){
  .hero-content-flex{
    flex-direction:column;
    text-align:center;
  }

  .hero-trust{
    margin-top:20px;
  }
}





/* ===============================
   HERO FLEX LAYOUT PRO
=============================== */

.hero-content-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Texto ocupa más espacio */
.hero-text {
  flex: 1.2;
  text-align: left;
}

/* Imagen ocupa menos espacio */
.hero-trust {
  flex: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-trust img {
  max-width: 1200px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  transition: 0.4s ease;
}

.hero-trust img:hover {
  transform: scale(1.05);
}





@media (max-width: 900px) {

  .hero-content-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-trust img {
    max-width: 180px;
    margin-top: 20px;
  }

}



/* ===============================
   MOBILE MENU
=============================== */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #12A150;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {

  .main-nav {
    position: absolute;
    top: 80px;
    right: 20px;
    background: rgba(6, 15, 14, 0.95);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(18,161,80,0.25);
    display: none;
    flex-direction: column;
    gap: 18px;
    width: 250px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  }

  .main-nav a {
    margin: 0;
    font-size: 16px;
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-header {
    display: none;
  }

}




/* ===============================
   FOOTER ENERGY EMBED FIX
=============================== */

.footer-prices {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.embed-prices {
  width: 100%;
}

.embed-prices iframe {
  width: 100%;
  height: 200px;   /* 🔥 ESTA ES LA CLAVE */
  border: none;
  display: block;
}










/* ===============================
   HERO INTERNO CON IMAGEN LATERAL
=============================== */

.hero-interno-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.hero-interno-text{
  flex:1.2;
  text-align:left;
}

.hero-interno-image{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-interno-image img{
  width:100%;
  max-width:380px;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,0.6);
  transition:0.4s ease;
}

.hero-interno-image img:hover{
  transform:scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px){

  .hero-interno-flex{
    flex-direction:column;
    text-align:center;
  }

  .hero-interno-text{
    text-align:center;
  }

  .hero-interno-image img{
    max-width:260px;
    margin-top:25px;
  }

}



/* ===============================
   HERO TECNOLOGÍAS GRID
=============================== */

.hero-tech-grid{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  text-align: center;
}

.hero-tech-item img{
  width: 180px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
  transition: 0.4s ease;
}

.hero-tech-item img:hover{
  transform: scale(1.1);
}

.hero-tech-item p{
  font-size: 14px;
  color: #CFE5DC;
  font-weight: 500;
}



/* ===============================
   HERO STATS PRO
=============================== */



.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #12A150;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: #CFE5DC;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}



.stat-icon {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.stat-icon svg {
  width: 36px;
  height: 36px;
  stroke: #12A150;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
  transition: 0.3s ease;
}

.stat-item:hover .stat-icon svg {
  transform: scale(1.1);
  stroke: #18d26b;
}
















.stat-icon {
  margin-bottom: 18px;
}

.stat-icon svg {
  width: 42px;
  height: 42px;
  stroke: #12A150;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
}

.stat-number.red {
  color: #CFE5DC;
  text-shadow: 0 0 12px rgba(255, 0, 0, 0.35);
}

.stat-suffix {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-top: -6px;
}

.stat-label {
  margin-top: 12px;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.6px;
  opacity: 0.9;
}















/* ===============================
   HERO STATS CARDS PREMIUM
=============================== */

.hero-stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* CARD INDIVIDUAL */
.stat-item {
  background: rgba(10, 22, 20, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 18px;
  padding: 35px 25px;

  border: 1px solid rgba(18,161,80,0.25);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.55),
    0 0 25px rgba(18,161,80,0.05);

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: all 0.35s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(18,161,80,0.6);
  box-shadow:
    0 25px 50px rgba(0,0,0,0.65),
    0 0 35px rgba(18,161,80,0.15);
}

/* ICON */
.stat-icon {
  margin-bottom: 20px;
}

.stat-icon svg {
  width: 44px;
  height: 44px;
  stroke: #12A150;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* NUMBER */
.stat-number {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
}

.stat-number.red {
  color: #CFE5DC;
  text-shadow:
    0 0 10px rgba(255,0,0,0.4),
    0 0 20px rgba(255,0,0,0.2);
}

/* SUFFIX */
.stat-suffix {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-top: -6px;
}

/* LABEL */
.stat-label {
  margin-top: 16px;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.6px;
  opacity: 0.9;
  text-align: center;
}





/* ===============================
   HERO VIDEO BACKGROUND
=============================== */

.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}












/* ===============================
   CONTACTO SINGLE GLASS
=============================== */

.contact-single {
  position: relative;
  
}

.contact-glass {
 
  margin: auto;
  padding: 60px;
  border-radius: 20px;
  backdrop-filter: blur(18px);
  background: rgba(20,30,30,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}

.contact-glass h1,
.contact-glass h2,
.contact-glass h3 {
  color: #12A150;
  margin-bottom: 15px;
}

.contact-intro {
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
}

.btn-contact {
  margin-top: 25px;
  width: 100%;
  padding: 16px;
  background: #12A150;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 40px 0;
}

.map-large iframe {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  border: none;
}

.contact-success {
  background: rgba(0,255,100,0.15);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}










/* =============================
   LINKEDIN PRINCIPAL FOOTER
============================= */

.linkedin-primary a{
  text-decoration: none;
}

.linkedin-box{
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(145deg, #0A1F2D, #0E2F44);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  border-radius: 12px;
  transition: all .3s ease;
}

.linkedin-box:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
  border-color: rgba(255,255,255,0.2);
}

.linkedin-logo{
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 30% 30%, #1a3f2a, #0d2418);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
}

.linkedin-logo img{
  width: 70%;
  height: 70%;
  object-fit: contain;
}


.linkedin-text strong{
  display: block;
  color: #ffffff;
  font-size: 16px;
}

.linkedin-text span{
  font-size: 13px;
  color: #cbd5e1;
}








.footer-legal {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,255,150,0.15);
  text-align: center;
  font-size: 13px;
  color: #8fa6a0;
}

.footer-legal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-legal-links {
  margin-top: 8px;
}

.footer-legal-links a {
  color: #12A150;
  text-decoration: none;
  margin: 0 8px;
}

.footer-legal-links a:hover {
  text-decoration: underline;
}














.social-icons-row {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-icons-row a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,255,150,0.08);
  border: 1px solid rgba(0,255,150,0.25);
  border-radius: 8px;
  color: #12A150;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons-row a:hover {
  background: #12A150;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,255,150,0.3);
}














/* CONTACTO ICONOS */
.contact-icons-row {
  display: flex;
  gap: 14px;
  margin: 12px 0 18px 0;
}

.contact-icons-row a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,255,150,0.08);
  border: 1px solid rgba(0,255,150,0.25);
  border-radius: 10px;
  color: #12A150;
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact-icons-row a:hover {
  background: #12A150;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,255,150,0.35);
}

/* MAPA */
.map-container iframe {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  border: 0;
}



















/* =========================
   CORPORATE FOOTER STYLE
========================= */

.main-footer{
  background:#000;
  color:#ccc;
  font-size:13px;
}

/* Top */
.footer-top{
  padding:70px 0 50px 0;
  border-top:none;
}


.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:60px;
  flex-wrap:wrap;
}

/* Brand */
.footer-brand{
  flex:1 1 30%;
}

.footer-logo-platinum img{
  width:240px;
  margin-bottom:15px;
  filter:none;
}


.footer-slogan{
  font-size:13px;
  color:#8aaea6;
  letter-spacing:.5px;
  line-height:1.6;
}

/* Social */
.footer-social{
  flex:1 1 35%;
}

.footer-social h5{
  font-size:13px;
  margin-bottom:15px;
  font-weight:600;
  color:#fff;
  letter-spacing:.5px;
}

.footer-social-icons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.footer-social-icons a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  background:#0a1f1c;
  color:#12A150;
  font-size:14px;
  transition:0.3s;
}

.footer-social-icons a:hover{
  background:#12A150;
  color:#000;
}

/* Services */
.footer-services{
  flex:1 1 25%;
}

.footer-services h5{
  font-size:13px;
  margin-bottom:15px;
  font-weight:600;
  color:#fff;
}

.footer-services ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-services li{
  margin-bottom:10px;
}

.footer-services a{
  color:#9fcfc5;
  text-decoration:none;
  font-size:13px;
  transition:0.3s;
}

.footer-services a:hover{
  color:#12A150;
}

/* Legal */
.footer-legal{
  background:#000;
  padding:25px 15px;
  text-align:center;
  font-size:12px;
  color:#6f9c95;
  border-top:1px solid #0d2b25;
}

.footer-legal-links{
  margin-top:10px;
}

.footer-legal-links a{
  color:#12A150;
  text-decoration:none;
  font-size:12px;
}

.footer-legal-links a:hover{
  text-decoration:underline;
}

/* Responsive */
@media(max-width:900px){
  .footer-inner{
    flex-direction:column;
    gap:40px;
  }
}










/* Quitar espacio fantasma antes del footer */
/* ===============================
   SERVICES SPACING FIX PRO
=============================== */

.services-video{
  padding-bottom: 160px;  /* 🔥 espacio elegante */
}

.services-video .container{
  margin-bottom: 60px; /* aire extra interno */
}


/* Footer pegado */
.main-footer{
  margin-top:0 !important;
}
















/* ===============================
   HERO MOBILE OPTIMIZADO PRO
=============================== */

@media (max-width: 768px){

  .hero{
    padding: 120px 20px 80px 20px;
    min-height: auto;
  }

  .hero-content{
    padding: 35px 25px;
  }

  .hero-content-flex{
    flex-direction: column;
    gap: 35px;
  }

  .hero-text{
    text-align: center;
  }

  .hero h1{
    font-size: 28px;
    line-height: 1.2;
  }

  .hero p{
    font-size: 15px;
  }

  /* BOTONES SEPARADOS */
  .hero-buttons{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 25px;
  }

  .btn-primary,
  .btn-secondary{
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  /* IMAGEN MÁS GRANDE */
  .hero-trust{
    margin-top: 10px;
  }

  .hero-trust img{
    max-width: 500px;
    width: 100%;
    transform: none;
  }

}
















/* ===============================
   ORBCOMM MOBILE LAYOUT PRO
=============================== */

@media (max-width: 900px){

  .orbcomm-flex{
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  /* LOGO ARRIBA GRANDE */
  .orbcomm-badge{
    justify-content: center;
  }

  .orbcomm-badge img{
    width: 85%;
    max-width: 320px;
    transform: none;
    margin-top: 20px;
  }

  /* TEXTO CENTRADO */
  .orbcomm-text{
    max-width: 100%;
  }

  .orbcomm-text h2{
    font-size: 28px;
    line-height: 1.2;
  }

  .orbcomm-text p{
    font-size: 15px;
  }

  .orbcomm-text .btn-secondary{
    display: inline-block;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
  }

}





/* ===============================
   CLOUDLOGGER MENU ICON
=============================== */

.nav-cloudlogger{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cloudlogger img{
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: 0.3s ease;
}

/* Hover elegante */
.nav-cloudlogger:hover img{
  transform: rotate(12deg) scale(2.0);
}



/* ===============================
   CLOUDLOGGER BRAND STYLE
=============================== */

.nav-cloudlogger{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  letter-spacing: .5px;
}

.nav-cloudlogger img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 4px;
}

/* cloud */
.cl-cloud{
  color: #ffffff;
  font-size: 14px;
}

/* LOGGER rojo */
.cl-logger{
  color: #ff2d2d; /* rojo elegante */
  font-size: 14px;
  font-weight: 800;
}

/* SCADA más pequeño */
.cl-scada{
  color: #ffffff;
  font-size: 11px;
  margin-left: 4px;
  opacity: 0.85;
  letter-spacing: 1px;
}








/* ===============================
   LOGO HOVER EFFECT PRO
=============================== */

.logo-wrapper a{
  display:inline-block;
  transition: all 0.35s ease;
}

.logo-wrapper a:hover{
  transform: translateY(-4px) scale(1.05);
}

.logo-wrapper a:hover img{
  filter: drop-shadow(0 8px 20px rgba(18,161,80,0.45));
}



















/* ===============================
   CONTACTO DIRECTORIO PRO
=============================== */

.contact-block{
  margin-bottom: 40px;
}

.contact-block h2{
  color:#12A150;
  margin-bottom:25px;
  font-size:22px;
  display:flex;
  align-items:center;
  gap:10px;
}

.contact-columns{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.contact-columns h4{
  margin-bottom:10px;
  font-size:15px;
  color:#CFE5DC;
  letter-spacing:.5px;
}

.contact-big{
  font-size:20px;
  font-weight:700;
  color:#ffffff;
  margin-bottom:8px;
}

.contact-columns a{
  color:#12A150;
  text-decoration:none;
}

.contact-columns a:hover{
  text-decoration:underline;
}

.contact-location-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:center;
}

.contact-map-small iframe{
  width:100%;
  height:250px;
  border-radius:12px;
  border:0;
  box-shadow:0 20px 40px rgba(0,0,0,.4);
}

@media(max-width:900px){
  .contact-location-grid{
    grid-template-columns:1fr;
  }
}














/* =====================================
   CONTACTO MOBILE FIX PRO
===================================== */

@media (max-width: 900px){

  /* Caja principal */
  .hero-interno-box{
    padding: 40px 25px;
    text-align: center;
  }

  .hero-interno-box h1{
    font-size: 28px;
  }

  /* Bloques */
  .contact-block{
    margin-bottom: 50px;
  }

  .contact-block h2{
    justify-content: center;
    font-size: 18px;
  }

  /* Columnas a una sola */
  .contact-columns{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-columns div{
    text-align: center;
  }

  .contact-big{
    font-size: 18px;
  }

  /* WhatsApp full width */
  .btn-whatsapp-large{
    width: 100%;
    max-width: 320px;
    margin: auto;
    display: inline-block;
  }

  /* Ubicación */
  .contact-location-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-address{
    text-align: center;
  }

  .contact-map-small{
    display: flex;
    justify-content: center;
  }

  .contact-map-small iframe{
    width: 100%;
    max-width: 350px;
    height: 220px;
  }

}












/* =====================================
   AJUSTE FONDO BRILLO
===================================== */






.hero-interno-bg{
  filter: brightness(0.20);
}























/* ==============================
   VIDEO BLOQUE TELEMETRÍA
============================== */

.hero-video-block{
  position: relative;
  width: 100%;
  height: 420px;
  margin: 60px 0;
  overflow: hidden;
  border-radius: 14px;
}

.hero-video-bg{
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-video-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0); 
  z-index: 2;
}

.hero-video-content{
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  color: #fff;
}

.hero-video-content h2{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 900px;
  line-height: 1.4;
}

.hero-video-content h2 span{
  color: #12A150; /* tu verde corporativo */
}

.hero-video-content p{
  font-size: 17px;
  max-width: 850px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px){
  .hero-video-block{
    height: 360px;
  }

  .hero-video-content h2{
    font-size: 20px;
  }

  .hero-video-content p{
    font-size: 15px;
  }
}






















/* ===== RESET VISUAL ===== */

.cls-slider,
.cls-video-band,
.cls-features,
.cls-split,
.cls-hero-big{
    width:100%;
    position:relative;
}

/* ===== SLIDER ===== */

.cls-slider{
    height: 100vh;
min-height: 750px;
    overflow:hidden;
}

.cls-slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity .8s ease;
}

.cls-slide.active{
    opacity:1;
}

.cls-slide-content{
    position:absolute;
    bottom:120px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    color:white;
}

.cls-slide-content h2{
    font-size:48px;
}

.cls-slide-content p{
    font-size:20px;
    opacity:.9;
}

.cls-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:40px;
    color:white;
    cursor:pointer;
    padding:20px;
    background:rgba(0,0,0,0.3);
    border-radius:50%;
}

.cls-arrow.left{ left:30px; }
.cls-arrow.right{ right:30px; }

.cls-selector{
    position:absolute;
    bottom:0;
    width:100%;
    background:rgba(0,0,0,0.7);
    padding:20px 0;
}

.cls-selector-items{
    display:flex;
    justify-content:center;
    gap:40px;
    color:white;
}

.cls-selector-items div{
    cursor:pointer;
    opacity:.6;
}

.cls-selector-items div.active{
    opacity:1;
    font-weight:bold;
}

.cls-progress-bar{
    position:absolute;
    top:0;
    left:0;
    height:4px;
    width:0%;
    background:#ff6a00;
}

/* ===== VIDEO BAND ===== */

.cls-video-band{
    height:350px;
    overflow:hidden;
}

.cls-video-band video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cls-video-overlay{
    position:absolute;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:42px;
    font-weight:bold;
}

/* ===== FEATURES ===== */

.cls-features{
    padding:80px 0;
    background:#0f1720;
}

.cls-container{
    max-width:1200px;
    margin:auto;
}

.cls-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.cls-card{
    background:#1b2530;
    padding:40px;
    text-align:center;
    border-radius:10px;
    transition:.3s;
    color:white;
}

.cls-card:hover{
    transform:translateY(-10px);
}

/* ===== SPLIT ===== */

.cls-split{
    padding:100px 0;
}

.cls-split-inner{
    display:flex;
    align-items:center;
    gap:60px;
}

.cls-split-image img{
    width:100%;
    max-width:500px;
}

.cls-split-text h2{
    font-size:36px;
}

/* ===== BIG HERO ===== */

.cls-hero-big{
    position:relative;
    height:70vh;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-align:center;
    overflow:hidden;
}

/* Overlay inteligente */

.cls-hero-big::before{
    content:"";
    position:absolute;
    inset:0;

    /* Oscurecimiento elegante */
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.55)
    );

    z-index:1;
}

/* Texto por encima del overlay */

.cls-hero-big-content{
    position:relative;
    z-index:2;
}


.cls-hero-big-content h2{
    font-size:48px;
}


.cls-hero-big-content h2{
    text-shadow:0 3px 15px rgba(0,0,0,0.7);
}

.cls-hero-big-content p{
    text-shadow:0 2px 12px rgba(0,0,0,0.6);
}














/* ===== VERTICAL FEATURE SECTION ===== */

.cls-vertical-feature{
    width:100%;
    background:#000;
    padding:100px 0;
    display:flex;
    justify-content:center;
}

.cls-vertical-inner{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;
    max-width:1200px;
    margin:auto;
}

/* Imagen vertical */

.cls-vertical-image{
    flex:0 0 auto;
    display:flex;
    justify-content:center;
}

.cls-vertical-image img{
    max-height:70vh; /* no más de 70% de la pantalla */
    height:auto;
    width:auto;
    max-width:400px;
    object-fit:contain;
    border-radius:12px;
}

/* Texto */

.cls-vertical-text{
    color:#fff;
    max-width:500px;
}

.cls-vertical-text h2{
    font-size:38px;
    margin-bottom:20px;
}

.cls-vertical-text p{
    font-size:18px;
    line-height:1.7;
    opacity:.85;
    margin-bottom:18px;
}

.cls-vertical-highlight{
    color:#ff6a00;
    font-weight:600;
    margin-top:25px;
}

/* Responsive */

@media(max-width:900px){

    .cls-vertical-inner{
        flex-direction:column;
        text-align:center;
    }

    .cls-vertical-image img{
        max-height:60vh;
    }

}












/* ================= SLIDER TEXT BOX PREMIUM ================= */

.cls-slide-content{
    position:absolute;
    bottom:90px;   /* 👈 ahora nace desde abajo */
    left:50%;
    transform:translateX(-50%);
    width:100%;
    display:flex;
    justify-content:center;
}


/* Recuadro tenue */

.cls-slide-box{
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    padding:16px 45px 18px 45px;  /* 👈 más compacto */
    border-radius:14px;
    max-width:650px;
    text-align:center;

    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 15px 40px rgba(0,0,0,0.4);
}




/* Logo dentro del recuadro */

.cls-slide-logo{
    width:100%;
    max-width:500px;
    height:auto;
    margin-bottom:8px; /* 👈 menos espacio */
    opacity:0.95;
}



/* Título */

.cls-slide-box h2{
    font-size:40px;
    margin-bottom:10px;
    color:#ffffff;
}

/* Texto */

.cls-slide-box p{
    font-size:17px;
    line-height:1.6;
    color:rgba(255,255,255,0.85);
}

/* Responsive */

@media(max-width:768px){

    .cls-slide-content{
        top:12%;
    }

    .cls-slide-box{
        padding:30px;
        margin:0 20px;
    }

    .cls-slide-logo{
        width:110px;
    }

    .cls-slide-box h2{
        font-size:30px;
    }

}




/* ================= ORBCOMM VIDEO BAND ================= */

.cls-orbcomm-band{
    position:relative;
}

.cls-orbcomm-logo-link{
    display:inline-block;
    margin-bottom:25px;
    transition:0.4s ease;
}

.cls-orbcomm-logo{
    width:420px;
    max-width:80%;
    height:auto;
    filter:drop-shadow(0 10px 30px rgba(0,0,0,0.6));
    transition:0.4s ease;
}

/* Hover elegante */
.cls-orbcomm-logo-link:hover .cls-orbcomm-logo{
    transform:scale(1.08);
    filter:drop-shadow(0 15px 40px rgba(0,0,0,0.8));
}

/* Texto */
.cls-orbcomm-band h3{
    font-size:34px;
    font-weight:700;
    letter-spacing:1px;
    text-shadow:0 4px 20px rgba(0,0,0,0.8);
}





.cls-orbcomm-logo-link{
    background:rgba(0,0,0,0.35);
    padding:18px 30px;
    border-radius:12px;
    backdrop-filter:blur(6px);
}




.cls-video-overlay{
    display:flex;
    flex-direction:column;   /* 🔥 ESTO ES LA CLAVE */
    align-items:center;
    justify-content:center;
    text-align:center;
}




/* ===============================
   ORBCOMM DESCRIPTOR TEXT
=============================== */

.cls-orbcomm-band .cls-video-overlay p{
    font-size:14px;        /* 👈 más pequeño */
    line-height:1.5;
    opacity:0.85;
    max-width:900px;
    margin-top:12px;
}












/* ORBCOMM descriptor override */

.cls-orbcomm-band .cls-video-overlay p{
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-width: 800px;
    margin: 10px auto 0;
    font-weight: 400;
}












.cls-card{
    text-align:center;
    padding:30px 20px;
    background:#111;
    border-radius:12px;
    transition:0.3s ease;
}

.cls-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(255,0,0,0.2);
}

.cls-icon{
    margin-bottom:18px;
}

.cls-icon svg{
    width:48px;
    height:48px;
}









=/* ================= CTA BAND ================= */

.cls-cta-band{
    background: linear-gradient(135deg, #0a0f1a 0%, #111827 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cls-cta-inner{
    max-width: 900px;
    margin: 0 auto;
}

.cls-cta-band h2{
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.cls-cta-band p{
    font-size: 1rem;
    color: #bfc7d5;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* BOTÓN */

.cls-btn-cta{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00c853;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,200,83,0.3);
}

.cls-btn-cta i{
    font-size: 1.3rem;
}

.cls-btn-cta:hover{
    background: #00b34a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,200,83,0.4);
}

















/* ================= CTA PRO ================= */

.cls-cta-band{
    position: relative;
    padding: 120px 20px;
    background: radial-gradient(circle at 50% 20%, #111827 0%, #0a0f1a 60%);
    text-align: center;
    overflow: hidden;
}

/* Línea roja superior */

.cls-cta-redline{
    width: 120px;
    height: 4px;
    background: #ff1a1a;
    margin: 0 auto 40px auto;
    box-shadow: 0 0 20px rgba(255,0,0,0.6);
}

/* Contenedor centrado REAL */

.cls-cta-inner{
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cls-cta-band h2{
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.cls-cta-band p{
    font-size: 1rem;
    color: #bfc7d5;
    margin-bottom: 50px;
    line-height: 1.7;
}

/* BOTÓN PREMIUM */

.cls-btn-cta{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00c853;
    color: #ffffff;
    padding: 20px 50px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,200,83,0.35);
}

.cls-btn-cta i{
    font-size: 1.3rem;
}

.cls-btn-cta:hover{
    background: #00b34a;
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,200,83,0.45);
}

/* Glow suave de fondo */

.cls-cta-band::before{
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,0,0,0.08) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

/* Partículas sutiles */

.cls-cta-particles{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveParticles 20s linear infinite;
    opacity: 0.2;
    z-index: 0;
}

@keyframes moveParticles{
    from { transform: translateY(0); }
    to { transform: translateY(-40px); }
}















/* ===============================
   CTA BRAND STYLE PRO
=============================== */

.cta-title{
  font-size: 36px;
  line-height: 1.3;
  text-align: center;
}

.cta-brand{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

/* cloud */
.cta-cloud{
  color: #e5e7eb;
  font-weight: 600;
}

/* LOGGER rojo premium */
.cta-logger{
  color: #ff1a1a;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(255,0,0,0.6);
}

/* SCADA */
.cta-scada{
  font-size: 0.7em;
  letter-spacing: 1px;
  color: #9ca3af;
}

/* Logo */
.cta-orb{
  width: 42px;
  height: 42px;
  margin-left: 8px;
  transition: .6s ease;
}

/* Hover elegante */
.cta-brand:hover .cta-orb{
  transform: rotate(360deg) scale(1.15);
  filter: drop-shadow(0 0 10px rgba(255,0,0,0.7));
}











/* ===============================
   COMPARATIVO PRO
=============================== */

.cls-compare{
  width:100%;
  padding:110px 0;
  background: linear-gradient(180deg, #060f0e, #030909);
  position:relative;
  overflow:hidden;
}

.cls-compare-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 45px auto;
}

.cls-compare-head h2{
  font-size:38px;
  margin-bottom:12px;
  color:#ffffff;
  letter-spacing:.5px;
}

.cls-compare-head p{
  color:rgba(255,255,255,.78);
  font-size:16px;
  line-height:1.7;
}

.cls-compare-table{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.35);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}

.cls-compare-row{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.15fr;
  gap:0;
  border-top:1px solid rgba(255,255,255,0.06);
}

.cls-compare-row:first-child{
  border-top:none;
}

.cls-compare-cell{
  padding:20px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.cls-compare-feature{
  justify-content:flex-start;
  text-align:left;
  gap:14px;
}

.cls-compare-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255, 26, 26, 0.10);
  border:1px solid rgba(255, 26, 26, 0.25);
  box-shadow: 0 0 22px rgba(255, 26, 26, 0.08);
  flex:0 0 auto;
}

.cls-compare-icon svg{
  width:22px;
  height:22px;
  color:#ff1a1a;
}

.cls-compare-text strong{
  display:block;
  font-size:15px;
  letter-spacing:.2px;
  margin-bottom:4px;
}

.cls-compare-text span{
  display:block;
  font-size:13px;
  color:rgba(255,255,255,0.72);
  line-height:1.35;
}

.cls-compare-header .cls-compare-cell{
  padding:22px 18px;
  background: rgba(255,255,255,0.04);
}

.cls-compare-col-title{
  font-weight:800;
  letter-spacing:.4px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.cls-compare-col-sub{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,0.65);
  margin-top:6px;
}

.cls-compare-col-highlight{
  background: linear-gradient(180deg, rgba(255,26,26,0.10), rgba(0,0,0,0.15));
  border-left:1px solid rgba(255,26,26,0.18);
}

.cls-compare-orb{
  width:26px;
  height:26px;
  object-fit:contain;
  filter: drop-shadow(0 0 12px rgba(255,26,26,0.28));
  transform: translateY(1px);
}

.cls-compare-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.3px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color:#fff;
}

.cls-compare-badge.ok{
  background: rgba(18,161,80,0.14);
  border-color: rgba(18,161,80,0.35);
}

.cls-compare-badge.warn{
  background: rgba(255, 153, 0, 0.14);
  border-color: rgba(255, 153, 0, 0.35);
}

.cls-compare-badge.no{
  background: rgba(255, 26, 26, 0.12);
  border-color: rgba(255, 26, 26, 0.32);
}

.cls-compare-badge.best{
  background: rgba(255, 26, 26, 0.18);
  border-color: rgba(255, 26, 26, 0.55);
  box-shadow: 0 0 22px rgba(255, 26, 26, 0.12);
}

.cls-compare-note{
  margin-top:14px;
  text-align:center;
  font-size:12px;
  color:rgba(255,255,255,0.55);
}

/* Responsive */
@media(max-width: 980px){
  .cls-compare-row{
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}

@media(max-width: 820px){
  .cls-compare-table{
    overflow:auto;
  }
  .cls-compare-row{
    min-width: 860px; /* scroll horizontal pro */
  }
}

@media(max-width: 520px){
  .cls-compare-head h2{
    font-size:28px;
  }
  .cls-compare-head p{
    font-size:14px;
  }
}








/* ===============================
   ENGINEERING QUOTE SECTION
=============================== */

.cls-quote-section{
  padding:140px 0;
  background:#0b0f12;
  position:relative;
}

.cls-quote-inner{
  position:relative;
  max-width:1000px;
}

.cls-quote-mark{
  position:absolute;
  font-size:180px;
  font-weight:900;
  color:rgba(255,26,26,0.25);
  line-height:1;
  pointer-events:none;
  user-select:none;
  text-shadow: 0 0 40px rgba(255,0,0,0.3);
}


.cls-quote-open{
  top:-60px;
  left:-20px;
}

.cls-quote-close{
  bottom:-100px;
  right:-20px;
}

.cls-quote-content{
  position:relative;
  z-index:2;
}

.cls-quote-content p{
  font-size:22px;
  line-height:1.8;
  color:#e8f0f2;
  margin-bottom:28px;
  font-weight:400;
}

.cls-quote-highlight{
  font-weight:600;
  color:#ffffff;
  border-left:3px solid #ff1a1a;
  padding-left:20px;
}

/* Responsive */

@media(max-width:768px){

  .cls-quote-content p{
    font-size:18px;
  }

  .cls-quote-mark{
    font-size:100px;
  }

}

















/* ================= ARQUITECTURA + SEGURIDAD (PRO) ================= */

.cls-archsec{
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: #070a0f;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.cls-archsec-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 12% 25%, rgba(255,0,0,.12), transparent 55%),
    radial-gradient(700px 420px at 88% 65%, rgba(255,0,0,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.35));
  pointer-events:none;
}

.cls-archsec-particles{
  position:absolute; inset:-40%;
  background-image:
    radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity:.06;
  transform: rotate(12deg);
  pointer-events:none;
}

.cls-archsec-inner{ position: relative; z-index: 2; }

.cls-archsec-head{
  max-width: 980px;
  margin: 0 auto 32px auto;
  text-align: center;
}

.cls-archsec-redline{
  width: 110px;
  height: 4px;
  margin: 0 auto 16px auto;
  background: #ff1a1a;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,26,26,.45);
}

.cls-archsec-head h2{
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: .2px;
  margin: 0 0 10px 0;
  color: #fff;
}

.cls-archsec-head p{
  margin: 0 auto;
  max-width: 860px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}

.cls-archsec-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}

.cls-arch-card,
.cls-sec-card{
  background: rgba(10,12,18,.66);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow:
    0 24px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.03) inset;
  backdrop-filter: blur(10px);
}

.cls-arch-title,
.cls-sec-title{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.cls-arch-title h3,
.cls-sec-title h3{
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}

.cls-arch-badge,
.cls-sec-badge{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,26,26,.14);
  border: 1px solid rgba(255,26,26,.28);
  box-shadow: 0 0 22px rgba(255,26,26,.16);
}

/* ===== ARQUITECTURA FLOW ===== */

.cls-arch-flow{
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 64px 1.25fr;
  gap: 10px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.06);
  margin-top: 10px;
}

.cls-arch-node{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.cls-arch-node-highlight{
  background: rgba(255,26,26,.10);
  border: 1px solid rgba(255,26,26,.24);
  box-shadow: 0 0 28px rgba(255,26,26,.18);
}

.cls-arch-ico{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.cls-arch-node-highlight .cls-arch-ico{
  background: rgba(255,26,26,.14);
  border: 1px solid rgba(255,26,26,.28);
  box-shadow: 0 0 18px rgba(255,26,26,.22);
}

.cls-arch-ico svg{
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,.92);
}

.cls-arch-label strong{
  display:block;
  font-size: 14px;
  color:#fff;
  letter-spacing:.2px;
}
.cls-arch-label span{
  display:block;
  font-size: 12px;
  color: rgba(255,255,255,.72);
  margin-top: 2px;
}

.cls-arch-arrow{
  height: 2px;
  background: rgba(255,255,255,.18);
  position: relative;
}
.cls-arch-arrow:after{
  content:"";
  position:absolute;
  right:-2px; top:50%;
  width: 8px; height: 8px;
  border-right: 2px solid rgba(255,255,255,.22);
  border-bottom: 2px solid rgba(255,255,255,.22);
  transform: translateY(-50%) rotate(-45deg);
}

.cls-arch-arrow-opc{
  height: 2px;
  background: rgba(255,26,26,.35);
  box-shadow: 0 0 18px rgba(255,26,26,.24);
}
.cls-arch-arrow-opc span{
  position:absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,26,26,.14);
  border: 1px solid rgba(255,26,26,.24);
  padding: 4px 10px;
  border-radius: 999px;
}

/* points */
.cls-arch-points{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}

.cls-arch-point{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(255,255,255,.80);
  font-size: 14px;
  line-height: 1.6;
}

.cls-dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-top: 7px;
  background: #ff1a1a;
  box-shadow: 0 0 14px rgba(255,26,26,.45);
}

/* ===== SEGURIDAD ===== */

.cls-sec-grid{
  display:grid;
  gap: 10px;
  margin-top: 10px;
}

.cls-sec-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.cls-sec-item strong{
  display:block;
  color:#fff;
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 2px;
}

.cls-sec-item span{
  display:block;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}

.cls-sec-ico{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.cls-sec-ico svg{
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,.92);
}

.cls-sec-item-highlight{
  background: rgba(255,26,26,.10);
  border: 1px solid rgba(255,26,26,.24);
  box-shadow: 0 0 26px rgba(255,26,26,.16);
}

.cls-sec-item-highlight .cls-sec-ico{
  background: rgba(255,26,26,.14);
  border: 1px solid rgba(255,26,26,.28);
  box-shadow: 0 0 18px rgba(255,26,26,.22);
}

.cls-sec-footnote{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .cls-archsec{ padding: 70px 0; }
  .cls-archsec-head h2{ font-size: 32px; }
  .cls-archsec-grid{ grid-template-columns: 1fr; }
  .cls-arch-flow{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cls-arch-arrow,
  .cls-arch-arrow-opc{
    height: 28px;
    width: 2px;
    margin: 0 auto;
  }
  .cls-arch-arrow:after{
    right: 50%;
    top: auto;
    bottom: -2px;
    transform: translateX(50%) rotate(45deg);
    border-right: 0;
    border-bottom: 0;
    border-left: 2px solid rgba(255,255,255,.22);
    border-top: 2px solid rgba(255,255,255,.22);
  }
  .cls-arch-arrow-opc span{
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
  }
}





/* ===== ARQUITECTURA VERTICAL ===== */

.cls-arch-vertical{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  margin-top:15px;
  padding:20px;
  border-radius:16px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.06);
}

.cls-arch-layer{
  width:100%;
  max-width:420px;
  display:flex;
  gap:14px;
  align-items:center;
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  transition:.3s ease;
}

.cls-arch-layer:hover{
  transform:translateY(-2px);
  box-shadow:0 0 25px rgba(255,26,26,.15);
}

.cls-arch-layer-highlight{
  background:rgba(255,26,26,.12);
  border:1px solid rgba(255,26,26,.25);
  box-shadow:0 0 30px rgba(255,26,26,.18);
}

.cls-arch-layer-ico{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
}

.cls-arch-layer-highlight .cls-arch-layer-ico{
  background:rgba(255,26,26,.15);
  border:1px solid rgba(255,26,26,.35);
}

.cls-arch-layer-ico svg{
  width:22px;
  height:22px;
  color:white;
}

.cls-arch-layer-text strong{
  display:block;
  font-size:14px;
  color:#fff;
}

.cls-arch-layer-text span{
  font-size:12px;
  color:rgba(255,255,255,.7);
}

/* Flecha vertical */

.cls-arch-v-arrow{
  width:2px;
  height:30px;
  background:rgba(255,255,255,.2);
  position:relative;
}

.cls-arch-v-arrow:after{
  content:"";
  position:absolute;
  bottom:-4px;
  left:50%;
  transform:translateX(-50%) rotate(45deg);
  width:8px;
  height:8px;
  border-right:2px solid rgba(255,255,255,.3);
  border-bottom:2px solid rgba(255,255,255,.3);
}

.cls-arch-v-opc{
  background:rgba(255,26,26,.5);
  box-shadow:0 0 18px rgba(255,26,26,.4);
}

.cls-arch-v-opc span{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:11px;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:white;
  background:rgba(255,26,26,.15);
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,26,26,.35);
}









/* === GLOW COLUMNA CLOUDLOGGER === */

.cls-compare-col-highlight {
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(0, 255, 120, 0.05),
    rgba(0, 255, 120, 0.02)
  );
  box-shadow:
    0 0 20px rgba(0, 255, 120, 0.25),
    inset 0 0 40px rgba(0, 255, 120, 0.08);
  border-left: 2px solid rgba(0,255,120,0.6);
  border-right: 2px solid rgba(0,255,120,0.6);
}

/* Glow más fuerte en header */
.cls-compare-header .cls-compare-col-highlight {
  box-shadow:
    0 0 30px rgba(0, 255, 120, 0.4),
    inset 0 0 60px rgba(0, 255, 120, 0.15);
}












/* ================= CLIENTS BAND ================= */

.cls-clients-band {
  background: linear-gradient(180deg, #0a0a0a, #111);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cls-clients-head {
  text-align: center;
  margin-bottom: 50px;
}

.cls-clients-head h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}

.cls-clients-head p {
  font-size: 1rem;
  color: #bbb;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* MARQUEE */

.cls-clients-marquee {
  overflow: hidden;
  position: relative;
}

.cls-clients-track {
  display: flex;
  gap: 60px;
  animation: cls-scroll 40s linear infinite;
  align-items: center;
}

@keyframes cls-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* CLIENT ITEMS */

.cls-client-item {
  flex: 0 0 auto;
  opacity: 0.6;
  transition: all 0.4s ease;
}

.cls-client-item img {
  height: 60px;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.4s ease;
}

/* HOVER EFECTO PREMIUM */

.cls-client-item:hover {
  opacity: 1;
  transform: scale(1.08);
}

.cls-client-item:hover img {
  filter: grayscale(0%) brightness(1);
}

/* SUAVE FADE LATERAL */

.cls-clients-band::before,
.cls-clients-band::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.cls-clients-band::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.cls-clients-band::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}














/* ================= ROI SECTION ================= */

.cls-roi-section{
  position: relative;
  padding: 100px 0;
  background: #0b0f18;
  overflow: hidden;
}

.cls-roi-bg{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255,0,0,0.08), transparent 60%);
  pointer-events: none;
}

.cls-roi-inner{
  position: relative;
  z-index: 2;
}

.cls-roi-head{
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.cls-roi-redline{
  width: 80px;
  height: 4px;
  background: #ff1a1a;
  margin: 0 auto 20px auto;
}

.cls-roi-head h2{
  font-size: 34px;
  margin-bottom: 15px;
}

.cls-roi-head p{
  opacity: 0.8;
  font-size: 16px;
}

.cls-roi-card{
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 60px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  margin-bottom: 60px;
}

.cls-roi-quote-mark{
  position: absolute;
  top: -40px;
  left: 30px;
  font-size: 120px;
  color: rgba(255,26,26,0.2);
  font-weight: bold;
}

.cls-roi-content h3{
  margin-bottom: 20px;
  color: #ff1a1a;
}

.cls-roi-content p{
  margin-bottom: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

.cls-roi-highlight{
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  border-left: 4px solid #00ff88;
  padding-left: 15px;
}

.cls-roi-impact{
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.cls-roi-metric{
  text-align: center;
}

.cls-roi-number{
  display: block;
  font-size: 48px;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(0,255,136,0.6);
}











/* ================= FINAL STATEMENT ================= */

.cls-final-statement{
  position:relative;
  padding:120px 0;
  background:#0b0b0f;
  overflow:hidden;
}

.cls-final-bg{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 30%, rgba(255,0,0,0.15), transparent 40%),
             radial-gradient(circle at 80% 70%, rgba(0,255,0,0.08), transparent 50%);
  z-index:1;
}

.cls-final-particles{
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size:40px 40px;
  opacity:.25;
  z-index:1;
}

.cls-final-inner{
  position:relative;
  z-index:2;
  max-width:900px;
  text-align:center;
}

.cls-final-redline{
  width:80px;
  height:3px;
  background:linear-gradient(90deg,#ff0000,#00ff66);
  margin:0 auto 40px;
  border-radius:2px;
}

.cls-final-statement h2{
  font-size:40px;
  font-weight:700;
  margin-bottom:30px;
  line-height:1.2;
  color:#ffffff;
}

.cls-final-statement p{
  font-size:18px;
  line-height:1.7;
  color:#d0d0d0;
  margin-bottom:20px;
}

.cls-final-highlight{
  font-size:20px;
  font-weight:600;
  color:#ffffff;
  margin-top:30px;
  letter-spacing:1px;
  text-transform:uppercase;
  background:linear-gradient(90deg,#ff1a1a,#00ff66);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}










/* ============================= */
/* HERO SLIDER – AJUSTE MOVIL   */
/* ============================= */

@media (max-width: 768px) {

  .cls-slide-content {
    padding: 0 15px;
  }

  .cls-slide-box {
    width: 90%;
    max-width: 320px;
    padding: 25px 20px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
  }

  .cls-slide-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .cls-slide-box h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .cls-slide-box p {
    font-size: 14px;
    line-height: 1.4;
  }

}




@media (max-width: 768px) {

  .cls-slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }

}





@media (max-width: 768px) {

  .cls-selector {
    padding: 6px 0;
  }

  .cls-selector-items {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 0 8px;
  }

  .cls-selector-items div {
    font-size: 12px;
    white-space: nowrap;
    opacity: 0.7;
    flex: 1;
    text-align: center;
  }

  .cls-selector-items div.active {
    font-weight: 600;
    opacity: 1;
  }

}








/* ============================= */
/* FEATURES RESPONSIVE GRID     */
/* ============================= */

.cls-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Tablet */
@media (max-width: 1024px) {
  .cls-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Móvil */
@media (max-width: 768px) {
  .cls-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .cls-card {
    padding: 20px 15px;
  }

  .cls-card h3 {
    font-size: 14px;
    line-height: 1.4;
  }
}





@media (max-width: 768px) {

  /* Reset completo del contenedor */
  .cls-compare-table {
    width: 100%;
    min-width: unset !important;
  }

  .cls-compare {
    overflow-x: hidden;
  }

  /* Ocultar columnas 2 y 3 */
  .cls-compare-row .cls-compare-cell:nth-child(2),
  .cls-compare-row .cls-compare-cell:nth-child(3) {
    display: none;
  }

  /* Forzar layout real de 2 columnas */
  .cls-compare-row {
    display: grid;
    grid-template-columns: 60% 40%;
    width: 100%;
  }

  /* Ajustar padding */
  .cls-compare-cell {
    padding: 10px 6px;
  }

  /* Reducir tipografía */
  .cls-compare-text strong {
    font-size: 14px;
  }

  .cls-compare-text span {
    font-size: 12px;
  }

  .cls-compare-badge {
    font-size: 11px;
    padding: 4px 6px;
  }

}











@media (max-width: 768px){

  /* QUITAR el ancho forzado */
  .cls-compare-row{
    min-width: 0 !important;
  }

  .cls-compare-table{
    overflow: visible !important;
  }

}











@media (max-width: 768px){

  /* Ocultar subtítulo del header cloudLOGGER */
  .cls-compare-header 
  .cls-compare-col-highlight 
  .cls-compare-col-sub{
    display: none;
  }

}







@media (max-width: 768px){

  .cls-quote-section{
    padding: 90px 0;
  }

  .cls-quote-inner{
    position: relative;
    padding: 0 20px;
  }

  /* HACERLAS VISIBLES */
  .cls-quote-mark{
    font-size: 90px;           /* más grandes */
    color: rgba(255,26,26,0.35); /* más visibles */
    z-index: 1;
  }

  .cls-quote-open{
    top: -10px;
    left: 10px;
  }

  .cls-quote-close{
    bottom: -60px;
    right: 10px;
  }

  /* Texto encima */
  .cls-quote-content{
    position: relative;
    z-index: 2;
  }

  .cls-quote-content p{
    font-size: 16px;
    line-height: 1.7;
  }

}












@media (max-width: 768px){

  /* Más altura vertical */
  .cls-hero-big{
    min-height: 90vh;
    height: auto;
    padding: 120px 20px 80px 20px;
  }

  /* Contenedor más ancho */
  .cls-hero-big-content{
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  /* TÍTULO */
  .cls-hero-big-content h2{
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
  }

  /* Quitar saltos forzados */
  .cls-hero-big-content h2 br{
    display: none;
  }

  /* TEXTO */
  .cls-hero-big-content p{
    font-size: 15px;
    line-height: 1.6;
  }

  /* Quitar br del párrafo */
  .cls-hero-big-content p br{
    display: none;
  }

}














@media (max-width: 768px){

  .cls-split-inner{
    flex-direction: column;   /* Imagen arriba */
    text-align: center;
    gap: 35px;
  }

  .cls-split-image{
    order: 1;
  }

  .cls-split-text{
    order: 2;
  }

  .cls-split-image img{
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .cls-split-text h2{
    font-size: 24px;
    line-height: 1.3;
  }

  .cls-split-text p{
    font-size: 15px;
    line-height: 1.6;
  }

  /* Quitar saltos forzados */
  .cls-split-text p br{
    display:none;
  }

}

















@media (max-width: 768px){

  /* Reducir altura del bloque */
  .cls-video-band{
    height: 280px;
  }

  /* Overlay más compacto */
  .cls-video-overlay{
    padding: 20px;
  }

  /* Logo más pequeño */
  .cls-orbcomm-logo{
    width: 200px;
    max-width: 75%;
  }

  /* Títulos más pequeños */
  .cls-orbcomm-band h3{
    font-size: 18px;
    line-height: 1.3;
  }

  /* Texto más compacto */
  .cls-orbcomm-band p{
    font-size: 13px !important;
    line-height: 1.5 !important;
    max-width: 90%;
  }

  /* Quitar salto forzado */
  .cls-orbcomm-band p br{
    display: none;
  }

}











.cls-features-title{
  margin: 0 0 28px 0;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

/* móvil */
@media (max-width: 768px){
  .cls-features-title{
    font-size: 20px;
    margin-bottom: 18px;
    padding: 0 14px;
  }
}











/* ===== TITULO PADROTE FEATURES ===== */

.cls-features-title{
  text-align:center;
  font-size:34px;
  font-weight:800;
  letter-spacing:1px;
  margin:0 0 50px 0;
  position:relative;
  display:inline-block;
  width:100%;
}

.cls-features-title span{
  display:block;
  font-weight:600;
  opacity:.85;
  font-size:22px;
  margin-top:6px;
}

/* LINEA ROJA INDUSTRIAL */
.cls-features-title::after{
  content:"";
  display:block;
  width:90px;
  height:4px;
  background:#ff1a1a;
  margin:18px auto 0 auto;
  border-radius:3px;
  box-shadow:0 0 12px rgba(255,26,26,0.6);
}

/* MOBILE */
@media (max-width:768px){

  .cls-features-title{
    font-size:22px;
    margin-bottom:30px;
  }

  .cls-features-title span{
    font-size:16px;
  }

  .cls-features-title::after{
    width:60px;
    height:3px;
  }
}














/* ================= FEATURE ESPECIAL ================= */

.cls-feature-special{
  padding:90px 0;
  position:relative;
}

.cls-feature-special-inner{
  display:flex;
  align-items:center;
  gap:60px;
}

.cls-feature-special-icon{
  flex:0 0 180px;
}

.cls-feature-special-icon svg{
  width:180px;
  height:180px;
  stroke:#ff1a1a;
  filter: drop-shadow(0 0 15px rgba(255,26,26,0.4));
}

.cls-feature-special-text{
  flex:1;
}

.cls-feature-special-text h2{
  font-size:34px;
  font-weight:800;
  margin-bottom:25px;
  position:relative;
}

/* línea roja debajo del título */
.cls-feature-special-text h2::after{
  content:"";
  display:block;
  width:90px;
  height:4px;
  background:#ff1a1a;
  margin-top:18px;
  border-radius:3px;
}

.cls-feature-special-text p{
  font-size:17px;
  line-height:1.7;
  margin-bottom:18px;
}

.cls-feature-special-text strong{
  font-weight:700;
}

/* BOTÓN EXCLUSIVO */
.cls-feature-special-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 28px;
  background:#ff1a1a;
  color:#fff;
  font-weight:700;
  border-radius:6px;
  text-decoration:none;
  transition:all .3s ease;
  box-shadow:0 0 15px rgba(255,26,26,0.3);
}

.cls-feature-special-btn:hover{
  background:#e00000;
  transform:translateY(-2px);
}

/* MOBILE */
@media(max-width:768px){

  .cls-feature-special-inner{
    flex-direction:column;
    text-align:center;
  }

  .cls-feature-special-icon{
    flex:unset;
  }

  .cls-feature-special-icon svg{
    width:120px;
    height:120px;
  }

  .cls-feature-special-text h2{
    font-size:22px;
  }

  .cls-feature-special-text p{
    font-size:15px;
  }
}























/* ===============================
   DYSCO ENGINEERING QUOTE (GREEN VERSION)
=============================== */

.dysco-quote-section{
  padding:140px 0;
  background:#0B1110;
  position:relative;
  overflow:hidden;
}

.dysco-quote-inner{
  position:relative;
  max-width:1000px;
}

.dysco-quote-mark{
  position:absolute;
  font-size:180px;
  font-weight:900;
  color:rgba(18,161,80,0.18);
  line-height:1;
  pointer-events:none;
  user-select:none;
  text-shadow:0 0 40px rgba(18,161,80,0.25);
}

.dysco-quote-open{
  top:-60px;
  left:-20px;
}

.dysco-quote-close{
  bottom:-100px;
  right:-20px;
}

.dysco-quote-content{
  position:relative;
  z-index:2;
}

.dysco-quote-content p{
  font-size:22px;
  line-height:1.8;
  color:#E8F5EF;
  margin-bottom:28px;
  font-weight:400;
}

.dysco-quote-content strong{
  color:#12A150;
  font-weight:700;
}

.dysco-quote-highlight{
  font-weight:600;
  color:#ffffff;
  border-left:4px solid #12A150;
  padding-left:22px;
  background:rgba(18,161,80,0.05);
  box-shadow: inset 0 0 20px rgba(18,161,80,0.08);
}






















/* ===============================
   DYSCO CTA WHATSAPP (GREEN VERSION)
=============================== */

.dysco-cta-band{
  position:relative;
  padding:120px 20px;
  background:linear-gradient(180deg,#0B1110,#060c0b);
  text-align:center;
  overflow:hidden;
  border-top:1px solid rgba(18,161,80,0.15);
  border-bottom:1px solid rgba(18,161,80,0.15);
}

/* Glow radial verde */
.dysco-cta-glow{
  position:absolute;
  width:700px;
  height:700px;
  background:radial-gradient(circle, rgba(18,161,80,0.15) 0%, transparent 70%);
  top:-250px;
  left:50%;
  transform:translateX(-50%);
  z-index:0;
}

.dysco-cta-inner{
  max-width:900px;
  margin:0 auto;
  position:relative;
  z-index:2;
}

/* Línea verde superior */
.dysco-cta-greenline{
  width:100px;
  height:4px;
  background:#12A150;
  margin:0 auto 40px auto;
  border-radius:3px;
  box-shadow:0 0 20px rgba(18,161,80,0.6);
}

.dysco-cta-title{
  font-size:36px;
  color:#ffffff;
  margin-bottom:25px;
  font-weight:700;
  line-height:1.3;
}

.dysco-cta-band p{
  font-size:17px;
  color:#CFE5DC;
  margin-bottom:45px;
  line-height:1.7;
}

.dysco-cta-band strong{
  color:#12A150;
}

/* BOTÓN PREMIUM VERDE */
.dysco-btn-cta{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:linear-gradient(135deg,#12A150,#0E8A44);
  color:#ffffff;
  padding:20px 50px;
  font-size:16px;
  font-weight:700;
  border-radius:50px;
  text-decoration:none;
  transition:all .3s ease;
  box-shadow:0 15px 40px rgba(18,161,80,0.35);
}

.dysco-btn-cta i{
  font-size:20px;
}

.dysco-btn-cta:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 60px rgba(18,161,80,0.55);
}

/* Responsive */
@media(max-width:768px){

  .dysco-cta-title{
    font-size:24px;
  }

  .dysco-cta-band p{
    font-size:15px;
  }

  .dysco-btn-cta{
    padding:16px 35px;
    font-size:14px;
  }

}





















/* ===============================
   SERVICES CENTER TITLE
=============================== */

.services-header-center{
  text-align:center;
  margin-bottom:80px;
  position:relative;
  z-index:3;
}

.services-header-center h2{
  font-size:42px;
  font-weight:800;
  color:#ffffff;
  margin-bottom:20px;
}

.services-line{
  display:block;
  width:90px;
  height:4px;
  background:#12A150;
  margin:0 auto;
  border-radius:3px;
  box-shadow:0 0 20px rgba(18,161,80,0.6);
}

/* GRID DE CARDS */
.services-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:35px;
}

/* Responsive */
@media(max-width:768px){
  .services-header-center h2{
    font-size:26px;
  }
}





/* ===============================
   FIX SERVICES LAYOUT
=============================== */

.services.services-video .container{
  display:block !important;
}

.services-header-center{
  text-align:center;
  margin-bottom:80px;
  position:relative;
  z-index:5;
}

.services-header-center h2{
  font-size:42px;
  font-weight:800;
  color:#ffffff;
  margin-bottom:20px;
}

.services-line{
  display:block;
  width:90px;
  height:4px;
  background:#12A150;
  margin:0 auto;
  border-radius:3px;
  box-shadow:0 0 20px rgba(18,161,80,0.6);
}

.services-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
}

@media(max-width:1200px){
  .services-cards{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .services-cards{
    grid-template-columns:1fr;
  }
}














/* =====================================================
   TELEMETRÍA INDUSTRIAL – VERDE DYSCO
===================================================== */

.telemetria-container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HERO */

.telemetria-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:url('/assets/img/telemetria-bg.jpg') center/cover no-repeat;
}

.telemetria-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,40,20,0.9) 40%, rgba(0,0,0,0.5));
}

.telemetria-hero-flex{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:60px;
    padding:100px 0;
}

.telemetria-hero-text{
    flex:1;
    color:#fff;
}

.telemetria-hero-text h1{
    font-size:48px;
    font-weight:800;
    margin-bottom:30px;
}

.telemetria-hero-text p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:18px;
    color:#e0f2e9;
}

.telemetria-hero-image{
    flex:1;
    text-align:right;
}

.telemetria-hero-image img{
    max-width:100%;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,120,60,0.35);
}

/* BLOQUE NEGRO */

.telemetria-tech{
    background:#02150c;
    padding:100px 0;
}

.telemetria-tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.telemetria-tech-item{
    text-align:center;
    color:#fff;
}

.telemetria-tech-item img{
    width:auto;
    max-width:90px;
    height:70px;
    object-fit:contain;
    display:block;
    margin:0 auto 25px auto;
}

.telemetria-tech-item p{
    font-size:15px;
    line-height:1.7;
    color:#b7d8c6;
}

/* VIDEO */

.telemetria-video{
    position:relative;
    height:500px;
    overflow:hidden;
}

.telemetria-video-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.telemetria-video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,40,20,0.75);
}

.telemetria-video-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.telemetria-video-content h2{
    font-size:36px;
    color:#fff;
}

.telemetria-video-content span{
    color:#00c26e;
}

/* STATS */

.telemetria-stats{
    background:#02150c;
    padding:100px 0;
}

.telemetria-stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
    text-align:center;
}

.stat-item{
    color:#fff;
}

.stat-number{
    font-size:48px;
    font-weight:800;
    color:#00c26e;
}

.stat-suffix{
    font-size:22px;
    margin-top:-10px;
    margin-bottom:10px;
    color:#00c26e;
}

.stat-label{
    font-size:14px;
    color:#a9cfc0;
    text-transform:uppercase;
}

/* BOTÓN */

.btn-whatsapp-large{
    display:inline-block;
    margin-top:25px;
    padding:14px 28px;
    background:#00a65a;
    color:#fff;
    font-weight:600;
    border-radius:6px;
    text-decoration:none;
    transition:all .3s ease;
}

.btn-whatsapp-large:hover{
    background:#008d4c;
    transform:translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:992px){
    .telemetria-hero-flex{
        flex-direction:column;
        text-align:center;
    }

    .telemetria-hero-text h1{
        font-size:36px;
    }

    .telemetria-video-content h2{
        font-size:26px;
    }

    .stat-number{
        font-size:38px;
    }
}

















/* =====================================================
   AUTOMATIZACIÓN INDUSTRIAL – VERDE DYSCO
===================================================== */

.automatizacion-container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HERO */

.automatizacion-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:url('/assets/img/automatizacion-bg.jpg') center/cover no-repeat;
}

.automatizacion-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,40,20,0.9) 40%, rgba(0,0,0,0.5));
}

.automatizacion-hero-flex{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:60px;
    padding:100px 0;
}

.automatizacion-hero-text{
    flex:1;
    color:#fff;
}

.automatizacion-hero-text h1{
    font-size:48px;
    font-weight:800;
    margin-bottom:30px;
}

.automatizacion-hero-text p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:18px;
    color:#e0f2e9;
}

.automatizacion-hero-image{
    flex:1;
    text-align:right;
}

.automatizacion-hero-image img{
    max-width:100%;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,120,60,0.35);
}

/* BLOQUE TÉCNICO */

.automatizacion-tech{
    background:#02150c;
    padding:100px 0;
}

.automatizacion-tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    text-align:center;
}

.automatizacion-tech-item{
    color:#fff;
}

.automatizacion-tech-item h3{
    font-size:20px;
    margin-bottom:15px;
    color:#00c26e;
}

.automatizacion-tech-item p{
    font-size:15px;
    color:#b7d8c6;
}

/* VIDEO */

.automatizacion-video{
    position:relative;
    height:500px;
    overflow:hidden;
}

.automatizacion-video-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.automatizacion-video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,40,20,0.75);
}

.automatizacion-video-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.automatizacion-video-content h2{
    font-size:36px;
    color:#fff;
}

.automatizacion-video-content span{
    color:#00c26e;
}

/* STATS */

.automatizacion-stats{
    background:#02150c;
    padding:100px 0;
}

.automatizacion-stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
    text-align:center;
}

.stat-item{
    color:#fff;
}

.stat-number{
    font-size:48px;
    font-weight:800;
    color:#00c26e;
}

.stat-label{
    font-size:14px;
    color:#a9cfc0;
    text-transform:uppercase;
}

/* RESPONSIVE */

@media(max-width:992px){
    .automatizacion-hero-flex{
        flex-direction:column;
        text-align:center;
    }

    .automatizacion-hero-text h1{
        font-size:36px;
    }

    .automatizacion-video-content h2{
        font-size:26px;
    }
}














/* =====================================================
   INSTRUMENTACIÓN INDUSTRIAL – VERDE DYSCO
===================================================== */

.instrumentacion-container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HERO */

.instrumentacion-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:url('/assets/img/instrumentacion-bg.jpg') center/cover no-repeat;
}

.instrumentacion-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,40,20,0.9) 40%, rgba(0,0,0,0.5));
}

.instrumentacion-hero-flex{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:60px;
    padding:100px 0;
}

.instrumentacion-hero-text{
    flex:1;
    color:#fff;
}

.instrumentacion-hero-text h1{
    font-size:48px;
    font-weight:800;
    margin-bottom:30px;
}

.instrumentacion-hero-text p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:18px;
    color:#e0f2e9;
}

.instrumentacion-hero-image{
    flex:1;
    text-align:right;
}

.instrumentacion-hero-image img{
    max-width:100%;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,120,60,0.35);
}

/* BLOQUE TÉCNICO */

.instrumentacion-tech{
    background:#02150c;
    padding:100px 0;
}

.instrumentacion-tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    text-align:center;
}

.instrumentacion-tech-item{
    color:#fff;
}

.instrumentacion-tech-item h3{
    font-size:20px;
    margin-bottom:15px;
    color:#00c26e;
}

.instrumentacion-tech-item p{
    font-size:15px;
    color:#b7d8c6;
}

/* VIDEO */

.instrumentacion-video{
    position:relative;
    height:500px;
    overflow:hidden;
}

.instrumentacion-video-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.instrumentacion-video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,40,20,0.75);
}

.instrumentacion-video-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.instrumentacion-video-content h2{
    font-size:36px;
    color:#fff;
}

.instrumentacion-video-content span{
    color:#00c26e;
}

/* STATS */

.instrumentacion-stats{
    background:#02150c;
    padding:100px 0;
}

.instrumentacion-stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
    text-align:center;
}

.instrumentacion-stats .stat-number{
    font-size:48px;
    font-weight:800;
    color:#00c26e;
}

.instrumentacion-stats .stat-label{
    font-size:14px;
    color:#a9cfc0;
    text-transform:uppercase;
}

/* RESPONSIVE */

@media(max-width:992px){
    .instrumentacion-hero-flex{
        flex-direction:column;
        text-align:center;
    }

    .instrumentacion-hero-text h1{
        font-size:36px;
    }

    .instrumentacion-video-content h2{
        font-size:26px;
    }
}














/* =====================================================
   SISTEMAS INSTRUMENTADOS DE SEGURIDAD – VERDE DYSCO
===================================================== */

.sis-container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HERO */

.sis-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:url('/assets/img/sis-bg.jpg') center/cover no-repeat;
}

.sis-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,40,20,0.9) 40%, rgba(0,0,0,0.5));
}

.sis-hero-flex{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:60px;
    padding:100px 0;
}

.sis-hero-text{
    flex:1;
    color:#fff;
}

.sis-hero-text h1{
    font-size:48px;
    font-weight:800;
    margin-bottom:30px;
}

.sis-hero-text p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:18px;
    color:#e0f2e9;
}

.sis-hero-image{
    flex:1;
    text-align:right;
}

.sis-hero-image img{
    max-width:100%;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,120,60,0.35);
}

/* BLOQUE TÉCNICO */

.sis-tech{
    background:#02150c;
    padding:100px 0;
}

.sis-tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    text-align:center;
}

.sis-tech-item{
    color:#fff;
}

.sis-tech-item h3{
    font-size:20px;
    margin-bottom:15px;
    color:#00c26e;
}

.sis-tech-item p{
    font-size:15px;
    color:#b7d8c6;
}

/* VIDEO */

.sis-video{
    position:relative;
    height:500px;
    overflow:hidden;
}

.sis-video-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.sis-video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,40,20,0.75);
}

.sis-video-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.sis-video-content h2{
    font-size:36px;
    color:#fff;
}

.sis-video-content span{
    color:#00c26e;
}

/* STATS */

.sis-stats{
    background:#02150c;
    padding:100px 0;
}

.sis-stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
    text-align:center;
}

.sis-stats .stat-number{
    font-size:48px;
    font-weight:800;
    color:#00c26e;
}

.sis-stats .stat-label{
    font-size:14px;
    color:#a9cfc0;
    text-transform:uppercase;
}

/* RESPONSIVE */

@media(max-width:992px){
    .sis-hero-flex{
        flex-direction:column;
        text-align:center;
    }

    .sis-hero-text h1{
        font-size:36px;
    }

    .sis-video-content h2{
        font-size:26px;
    }
}











/* =====================================================
   TRANSFERENCIA DE CUSTODIA – VERDE DYSCO
===================================================== */

.custodia-container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HERO */

.custodia-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:url('/assets/img/transferencia-bg.jpg') center/cover no-repeat;
}

.custodia-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,40,20,0.9) 40%, rgba(0,0,0,0.5));
}

.custodia-hero-flex{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:60px;
    padding:100px 0;
}

.custodia-hero-text{
    flex:1;
    color:#fff;
}

.custodia-hero-text h1{
    font-size:48px;
    font-weight:800;
    margin-bottom:30px;
}

.custodia-hero-text p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:18px;
    color:#e0f2e9;
}

.custodia-hero-image{
    flex:1;
    text-align:right;
}

.custodia-hero-image img{
    max-width:100%;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,120,60,0.35);
}

/* BLOQUE TÉCNICO */

.custodia-tech{
    background:#02150c;
    padding:100px 0;
}

.custodia-tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    text-align:center;
}

.custodia-tech-item{
    color:#fff;
}

.custodia-tech-item h3{
    font-size:20px;
    margin-bottom:15px;
    color:#00c26e;
}

.custodia-tech-item p{
    font-size:15px;
    color:#b7d8c6;
}

/* VIDEO */

.custodia-video{
    position:relative;
    height:500px;
    overflow:hidden;
}

.custodia-video-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.custodia-video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,40,20,0.75);
}

.custodia-video-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.custodia-video-content h2{
    font-size:36px;
    color:#fff;
}

.custodia-video-content span{
    color:#00c26e;
}

/* STATS */

.custodia-stats{
    background:#02150c;
    padding:100px 0;
}

.custodia-stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
    text-align:center;
}

.custodia-stats .stat-number{
    font-size:48px;
    font-weight:800;
    color:#00c26e;
}

.custodia-stats .stat-label{
    font-size:14px;
    color:#a9cfc0;
    text-transform:uppercase;
}

/* RESPONSIVE */

@media(max-width:992px){
    .custodia-hero-flex{
        flex-direction:column;
        text-align:center;
    }

    .custodia-hero-text h1{
        font-size:36px;
    }

    .custodia-video-content h2{
        font-size:26px;
    }
}













/* =====================================================
   CLOUDLOGGER INTEGRATION CTA – CLEAN VERSION
===================================================== */

.cls-integration-cta{
    width:100%;
    padding:120px 0;
    background:radial-gradient(circle at center, #021a10 0%, #000 100%);
    position:relative;
    overflow:visible; /* IMPORTANTE para que el glow salga */
}

.cls-cta-link{
    text-decoration:none;
    display:block;
}

.cls-cta-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.cls-cta-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
}

.cls-cta-text{
    flex:1;
    color:#fff;
}

.cls-cta-text h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
    line-height:1.2;
}

.cls-cta-text span{
    color:#00c26e;
    text-shadow:0 0 15px rgba(0,194,110,0.6);
}

.cls-cta-text p{
    font-size:18px;
    color:#cfe9dc;
    max-width:600px;
}

/* ================= BRAND AREA ================= */

.cls-cta-brand{
    flex:1;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:visible;
}

/* LOGO REAL (el planeta) */
.cls-cta-logo{
    width:520px;   /* tamaño real forzado */
    max-width:none;
    height:auto;
    position:relative;
    z-index:3;
}

/* ================= ORBE SOL ================= */

.cls-cta-orb{
    position:absolute;
    width:650px;          /* 30% menos que el anterior */
    height:650px;
    right:-150px;
    top:50%;
    transform:translateY(-50%);
    border-radius:50%;
    z-index:1;

    background:radial-gradient(circle,
        rgba(0,255,160,0.9) 0%,
        rgba(0,200,110,0.7) 20%,
        rgba(0,150,80,0.5) 40%,
        rgba(0,90,50,0.3) 60%,
        transparent 75%
    );

    filter:blur(70px); /* glow 30% menor */
    opacity:0.9;
}

/* HALO SUAVE */

.cls-cta-orb::before{
    content:"";
    position:absolute;
    inset:-120px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(0,255,140,0.25) 0%,
        transparent 60%
    );
    filter:blur(100px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .cls-cta-content{
        flex-direction:column;
        text-align:center;
    }

    .cls-cta-text h2{
        font-size:32px;
    }

    .cls-cta-logo{
        max-width:300px;
    }

    .cls-cta-orb{
        width:350px;
        height:350px;
        right:-80px;
    }

}







@media(max-width:992px){

    .cls-cta-content{
        flex-direction:column;
        text-align:center;
    }

    .cls-cta-text h2{
        font-size:32px;
    }

    .cls-cta-logo{
        width:280px;
    }

    .cls-cta-orb{
        width:180px;
        height:180px;
        right:auto;
        left:50%;
        transform:translate(-50%, -50%);
        filter:blur(30px);
        opacity:0.4;
    }

    .cls-cta-orb::before{
        display:none;
    }

}












/* =====================================
   DyscoLabs Floating Badge Responsive
===================================== */

.dyscolabs-badge{
    position:fixed;
    bottom:20px;
    right:20px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    background:rgba(0, 20, 15, 0.85);
    backdrop-filter:blur(6px);
    border:1px solid rgba(0,255,140,0.15);
    border-radius:40px;
    text-decoration:none;
    color:#cfe9dc;
    font-size:13px;
    font-weight:500;
    z-index:9999;
    transition:all 0.3s ease;
    opacity:0.8;
}

.dyscolabs-badge img{
    height:22px;
    width:auto;
}

.dyscolabs-badge span{
    white-space:nowrap;
}

/* Hover desktop */

.dyscolabs-badge:hover{
    opacity:1;
    transform:translateY(-3px);
    border-color:rgba(0,255,140,0.4);
    box-shadow:0 0 15px rgba(0,255,140,0.2);
}

/* ======================
   MOBILE VERSION
====================== */

@media(max-width:768px){

    .dyscolabs-badge{
        padding:10px;
        border-radius:50%;
        gap:0;
    }

    .dyscolabs-badge span{
        display:none; /* 🔥 solo logo */
    }

}















/* =====================================================
   HERO IMAGE SECTION (REUTILIZABLE)
===================================================== */

.cls-hero-image{
    position:relative;
    width:100%;
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}

.cls-hero-image-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55); /* Oscurecido ligero */
    z-index:1;
}

.cls-hero-image-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:1100px;
    padding:0 20px;
}

.cls-hero-image-content h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.2;
}

.cls-hero-image-content p{
    font-size:18px;
    line-height:1.7;
    opacity:0.95;
}















/* =========================================
   FOOTER SUBUNITS (Dysco University + STEM)
========================================= */

.footer-subunits{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* ===== DU LINK ===== */

.footer-du-link{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    transition:all 0.3s ease;
}

.footer-du-title{
    font-size:14px;
    color:#8fd9b6;
    font-weight:500;
    letter-spacing:0.5px;
    transition:all 0.3s ease;
}

.footer-du-logo{
    width:42px;
    height:42px;
    border-radius:50%;
    overflow:hidden;
    box-shadow:0 0 0px rgba(0,255,150,0.0);
    transition:all 0.4s ease;
}

.footer-du-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Hover elegante */

.footer-du-link:hover .footer-du-logo{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 0 18px rgba(0,255,150,0.45);
}

.footer-du-link:hover .footer-du-title{
    color:#ffffff;
    text-shadow:0 0 8px rgba(0,255,150,0.6);
}

/* ===== STEM ===== */

.footer-stem-link{
    font-size:13px;
    color:#6bc9a3;
    text-decoration:none;
    transition:all 0.3s ease;
    letter-spacing:0.4px;
}

.footer-heart{
    display:inline-block;
    transition:transform 0.3s ease;
}

.footer-stem-link:hover{
    color:#ffffff;
    text-shadow:0 0 10px rgba(0,255,150,0.6);
}

.footer-stem-link:hover .footer-heart{
    transform:scale(1.2);
}

/* ===== Responsive ===== */

@media (max-width:768px){
    .footer-subunits{
        align-items:center;
        text-align:center;
    }

    .footer-du-link{
        justify-content:center;
    }
}









/* ================= MAP SECTION ================= */

.contact-map-modern{
    position:relative;
    padding:120px 0;
    overflow:hidden;
}

.contact-map-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.contact-map-bg iframe{
    width:100%;
    height:100%;
    border:0;
    filter:brightness(.97) contrast(1.05);
}

/* ================= WRAPPER ================= */

.contact-map-wrapper{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:flex-start; /* alineado al grid */
}

/* ================= CARD ================= */

.contact-location-card{
    width:340px;
    background:rgba(20,20,20,.88);
    backdrop-filter:blur(16px);
    border-radius:20px;
    padding:55px 30px 30px;
    box-shadow:
        0 25px 60px rgba(0,0,0,.6);
    color:#fff;
}

/* ================= LOGO ================= */

.floating-logo{
    text-align:center;
    margin-bottom:20px;
}

.floating-logo img{
    width:70px;
    filter:drop-shadow(0 0 20px rgba(0,255,120,.6));
}

/* ================= TEXT ================= */

.contact-location-card h2{
    text-align:center;
    font-size:20px;
    margin-bottom:5px;
}

.location-sub{
    text-align:center;
    font-size:13px;
    opacity:.6;
    margin-bottom:25px;
}

/* ================= DETAILS ================= */

.location-details{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:25px;
}

.loc-row{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
}

.loc-row i{
    color:#00ff88;
    width:18px;
}

.loc-row a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.loc-row a:hover{
    color:#00ff88;
}

/* ================= BUTTON ================= */

.btn-open-maps{
    display:inline-block;
    padding:8px 18px;
    font-size:13px;
    background:#00ff88;
    color:#000;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-open-maps:hover{
    background:#00c96b;
    transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .contact-map-wrapper{
        justify-content:center;
    }
}

@media(max-width:768px){
    .contact-location-card{
        width:100%;
    }
}


















