/*Fonts*/

@font-face {
  font-family: 'TT Supermolot Neue Thin';
  src: url('font/TTSupermolotNeue-Thin.eot');
  src: local('TT Supermolot Neue Thin'), local('TTSupermolotNeue-Thin'),
      url('font/TTSupermolotNeue-Thin.eot?#iefix') format('embedded-opentype'),
      url('font/TTSupermolotNeue-Thin.woff2') format('woff2'),
      url('font/TTSupermolotNeue-Thin.woff') format('woff'),
      url('font/TTSupermolotNeue-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}


@font-face {
  font-family: 'TT Supermolot Neue Regular';
  src: url('font/TTSupermolotNeue-Regular.eot');
  src: local('TT Supermolot Neue Regular'), local('TTSupermolotNeue-Regular'),
      url('font/TTSupermolotNeue-Regular.eot?#iefix') format('embedded-opentype'),
      url('font/TTSupermolotNeue-Regular.woff2') format('woff2'),
      url('font/TTSupermolotNeue-Regular.woff') format('woff'),
      url('font/TTSupermolotNeue-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TT Supermolot Neue Medium';
  src: url('font/TTSupermolotNeue-Medium.eot');
  src: local('TT Supermolot Neue Medium'), local('TTSupermolotNeue-Medium'),
      url('font/TTSupermolotNeue-Medium.eot?#iefix') format('embedded-opentype'),
      url('font/TTSupermolotNeue-Medium.woff2') format('woff2'),
      url('font/TTSupermolotNeue-Medium.woff') format('woff'),
      url('font/TTSupermolotNeue-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'TT Supermolot Neue Demibold';
  src: url('font/TTSupermolotNeue-DemiBold.eot');
  src: local('TT Supermolot Neue DemiBold'), local('TTSupermolotNeue-DemiBold'),
      url('font/TTSupermolotNeue-DemiBold.eot?#iefix') format('embedded-opentype'),
      url('font/TTSupermolotNeue-DemiBold.woff2') format('woff2'),
      url('font/TTSupermolotNeue-DemiBold.woff') format('woff'),
      url('font/TTSupermolotNeue-DemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

:root {

  --color-primary: #7031c7;
  --color-secondary: #05a6a6;
  --color-light: #ffffff;
  --color-dark: #333333;
  --color-icon-bg: #38f9ff;


  --primary-color: #6a11cb;
  --secondary-color: #2575fc;
  --dark-blue: #002180;
  --accent-color: #ff00ff;
  --blue-accent: #00FFFF;
  --dark-bg: #0a0a1a;
  --darker-bg: #050510;
  --light-text: #fff;
  --card-bg: rgba(30, 30, 60, 0.5);
  --neon-glow: 0 0 10px rgba(106, 17, 203, 0.7), 0 0 20px rgba(37, 117, 252, 0.5);
  --neon-blue: 0 0 10px rgba(9, 209, 245, 0.986), 0 0 20px rgba(13, 227, 255, 0.747);
  --neon-gray: 0 0 10px rgba(73, 73, 73, 0.404), 0 0 20px rgba(41, 41, 41, 0.205);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'TT Supermolot Neue Regular';
background: rgb(11, 13, 37);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 90%;
  margin: 0px auto;
  padding: 0 20px;
}

a {
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  text-decoration: none;
  color: var(--light-text);
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: bold;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

/* Buttons */
.btn-lg {
  font-size: 1.2rem;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background: #00FFFF;
  color: #000;
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  font-size: 1rem;
  box-shadow: var(--neon-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(106, 17, 203, 0.8), 0 0 30px rgba(37, 117, 252, 0.6);
}

.btn-primary-noshadow {
  background: #00FFFF;
  color: #000;
}

.btn-primary-noshadow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(6, 224, 240, 0.205), 0 0 30px rgba(37, 117, 252, 0.6);
}

.btn-404 {
  background: #00FFFF;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: emphasis 2s infinite;
}

.btn-404:hover {
  animation: none;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.btn-404:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-404:hover:before {
  left: 100%;
}

@keyframes emphasis {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 255, 255, 0);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 255, 255, 0);
  }
}

/* Top Navbar */
.top-navbar {
  background:#0E054A;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-navbar-2 {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.466);
}

.top-navbar, .top-navbar-2 {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
  .top-navbar .quick-links, .top-navbar-2 .quick-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
  }

  .top-navbar .quick-links.active, .top-navbar-2 .quick-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    font-weight: bold;

  }

  .menu-toggle-top {
    display: flex;
  }
}


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

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

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.menu-toggle-top {
  display: none; /* Hide on desktop by default */
}

@media (max-width: 768px) {
  .social-links {
    /*flex-direction: column;*/
    align-items: center;
  }
}

.social-link {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  transform: translateY(-3px);
  box-shadow: var(--neon-glow);
}

.quick-links { 
  display: flex;
  gap: 20px;
}

.quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  
  font-size: clamp(0.8rem, 1.0  vw, 1.1rem); /* Se adapta a diferentes pantallas */
  position: relative;
}

.quick-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

.quick-link:hover:after {
  width: 100%;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;  /* Ajusta según el tamaño deseado */
  height: 32px;
}

.icon-svg {
  width: 20px;  /* Tamaño del icono */
  height: 20px;
  object-fit: contain; /* Evita distorsión */
  transition: transform 0.2s ease-in-out;
}

/* Efecto al pasar el mouse */
.icon-link:hover .icon-svg {
  transform: scale(1.1);
}


/* Main Navbar */
.main-navbar {
  padding: 20px 0;
  position: sticky;
  z-index: 1000;
  background: #9644d0;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 15px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(var(--neon-glow));
}

.main-menu {
  font-family: 'TT Supermolot Neue Regular', sans-serif, sans-serif;
  font-size: 0.95rem;
  display: flex;
  gap: 25px;
}

.main-menu a {
  position: relative;
  font-weight: 500;
}

.main-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(45deg, var(--blue-accent), var(--secondary-color));
  transition: var(--transition);
}

.main-menu a:hover:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--light-text);
  transition: var(--transition);
}

.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(to right, #3F1483, #370B5B);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 0 0 4px 4px;
  z-index: 1000;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  padding: 8px 20px;
}

.submenu li a {
  color: white;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.submenu li a:hover {
  color: #00FFFF;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .submenu {
    position: static;
    background: transparent;
    display: none;
    padding-left: 20px;
  }

  .has-submenu.active .submenu {
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('assets/banner-1.png');
  background-position: center -120px;
  background-color: rgb(7, 0, 54);
  background-size:cover;  
  
}

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

.hero-title {
  font-family: 'TT Supermolot Neue Regular', sans-serif, sans-serif;
  font-weight: 700;
  font-size: 2.9rem;
  background: #00FFFF;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Stats Counter Animation */
@keyframes countUp {
  from {
    content: "0";
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.stat-number::after {
  content: attr(data-target);
  animation: countUp 2s ease-out forwards;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}






/* Platform Section */
.platform-section {
  padding: 50px 0;
  background: linear-gradient(to right, #3F1483, #370B5B, #0E054A);
  background-color: var(--darker-bg);
}

.section-title {
  font-family: 'TT Supermolot Neue Medium', sans-serif, sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  padding: 50px 20px 10px 10px;
  line-height: 1.2em;
  font-size: 2.7rem;
  text-align: center;
  background: aqua;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title2 {
  font-family: 'TT Supermolot Neue Medium', sans-serif, sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  font-size: 2.7rem;
  line-height: 1.2em;
  margin-bottom: 20px;
  background: aqua;
  
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  
}

.section-subtitle {

  font-family: 'TT Supermolot Neue Thin', sans-serif, sans-serif;
  font-weight: 0; /* Puedes cambiarlo según el peso que necesites */
  
  padding: 0px 20px;
  font-size: 1.7rem;
  line-height: 2rem;  
  max-width: 100%;
  margin: 0 auto 50px;
  text-align: center;
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  background: #00FFFF;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}




/* Services Section */
.services-section {

  padding: 0;
  background: rgb(11, 13, 37);

}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px; /*espacio entre cards*/
  max-width: 90%;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background-color: #002285; /* Azul oscuro */
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: var(--transition);
  
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.service-icon {
  display: flex;
  padding-right: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
 margin-bottom: -15px;
  
}

/* App Section */
.app-section {
  position: relative;
  width: 100%;
  background: url('assets/waves-blue.webp') no-repeat center bottom;
  background-size: auto 70%;
  /*background-size: cover;*/
  background-position: center;
  padding: 150px 0px 0px 0px;
  /*display: flex;*/
  align-items: center;
  overflow: hidden;
}
@keyframes floatBackground {
  0% {
    background-position: center;
  }
  50% {
    background-position: center 20px;
  }
  100% {
    background-position: center;
  }
}

.app-section-our {
  z-index: 99;
  position: relative;
  width: 100%;
  background-position: center;
  padding: 80px 0px 100px 0px;
  align-items: center;
  overflow: hidden;
  animation: floatBackground 4s ease-in-out infinite;
}
.app-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 0 20px;
}

.app-content {
  flex: 1;
  max-width: 50%; /* Changed from 50% to 100% for better mobile display */
  text-align: left;
  padding: 100px 100px 150px 150px;
  min-width: 60%; /* Ajusta según el diseño */
}

.container-2 {
  display: flex;
}

.phone-image {
  display: flex;
  
  justify-content: flex-end;
  
}

.section-text {
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  margin-bottom: 30px;
  font-size: 1.6rem;
  opacity: 0.9;
}

.app-image {
  display: none; /* Ocultamos la imagen si ya está como fondo */
}

.app-image img {
  max-width: 60%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(106, 17, 203, 0.5));
  
}



@keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1000px;
  }
}

/* Contact Section */

 /* Contenedor del carrusel */
 .carousel-container {
  width: 100%;
  overflow: hidden;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

/* Carrusel */
.carousel {
  display: flex;
  gap: 20px;
  animation: moveLogos 30s linear infinite;
  width: max-content;
}

/* Logos */
.carousel img {
  width: 120px; /* Ajusta el tamaño */
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: transform 0.3s ease-in-out;
}

/* Efecto al pasar el mouse */
.carousel img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Animación continua */
@keyframes moveLogos {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-50%);
  }
}




  /*Sección de contacto Formularios*/
.contact-section {
  padding: 20px 0;
  background: white;
}

.contact-form {
  max-width: 800px;
  margin: 0px auto 0;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group.full-width {
  width: 100%;
}

input, textarea, select {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  background-color:transparent;
  border: 1.7px solid #6029C7;
  color: black;
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(106, 17, 203, 0.3);
}

textarea {
  resize: vertical;
}

.checkbox-group {
  margin-top: 15px;
  display: flex;
  align-items: center; /* Alinea verticalmente */
  gap: 10px; /* Espacio entre el checkbox y el texto */
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-color: var(--neon-glow);
  box-shadow: var(--neon-glow);
  margin-right: 10px; /* Espacio entre el checkbox y el texto */
  cursor: pointer;
  transition: var(--transition);
}

.checkbox-group input:hover {
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.8), 0 0 30px rgba(37, 117, 252, 0.6);
}

.checkbox-group input:checked {
  background-color: #00FFFF;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.8), 0 0 30px rgba(37, 117, 252, 0.6);
}

.checkbox-group span {
  font-size: 1rem;
  opacity: 0.8;
}

.recaptcha {
  margin-bottom: 20px;
}

.full-width {
  width: 100%;
}

/* Footer */
.footer {
  background: rgb(11, 13, 37);
  padding: 80px 0 20px;
  border-top: 1px solid rgba(26, 227, 253, 0.411);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Alinea todo a la izquierda */
  text-align: left;
  color: white; /* Ajusta el color según tu diseño */
}

.footer-logo p {
  margin-top: 5px;
  font-size: 14px;
}

.footer-contact {
  font-family:  'Outfit', sans-serif;
  font-weight: 20;
  margin-top: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px; /* Espacio entre el icono y el texto */
  margin-bottom: 10px; /* Espaciado entre elementos */
}

.contact-item i {
  font-size: 20px; /* Tamaño del icono */
  color: #00d0ff; /* Ajusta el color de los iconos */
}

.contact-icon {
  width: 24px; /* Tamaño del icono */
  height: 24px;
  object-fit: contain; /* Evita distorsión */
}

.contact-item div {
  font-size: 14px;
  color: #ffffff; /* Color del texto */
  font-family: 'Outfit', sans-serif;
  line-height: 1.75;
}





.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}


.footer-links {
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  flex: 1;
  justify-content: center;
}

.footer-links h3,
.footer-links ul li a {
  
  font-weight: 400;
}

.footer-column h3 {
  margin-bottom: 20px;
  position: relative;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  bottom: -8px;
  left: 0;
  background: linear-gradient(45deg, var(--blue-accent), var(--secondary-color));
}

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

.footer-column ul li a {
  opacity: 0.7;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(26, 227, 253, 0.411);
}

.footer-links h3 {
  color: var(--blue-accent);
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-icons a:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  transform: translateY(-3px);
  box-shadow: var(--neon-glow);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/*mobile responsive*/

@media (max-width: 768px) {
  .container-2 {
    flex-direction: column-reverse;
  }

  .app-section {
    padding: 0px 0;
    background-position: top center;
  }
  
  .app-section .container {
    flex-direction: column;
    text-align: center;
  }
  
  .app-content {
    text-align: center;
    padding: 0 15px;
  }
  
  .section-text {
    font-family: 'TT Supermolot Neue Regular', sans-serif;
    font-size: 2.3rem;
    line-height: 1.2em;

  }

  .section-title2 {
    font-size: 2.5rem;
    line-height: 1em;
  }
}


/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .app-section .container {
    flex-direction: column;
  }
  
  .app-content, .app-image {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
    flex-direction: column;
    background: linear-gradient(to right, #551dfc, #9644d0);
    padding: 20px;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .main-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .footer-top, .footer-links, .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .quick-links {
    display: none;
  }
  
  .mobile-quick-menu {
    display: block;
    position: relative;
  }
  
  .mobile-quick-menu .quick-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #551dfc, #9644d0);
    padding: 15px;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .mobile-quick-menu .quick-links.active {
    display: flex;
  }
  
  .menu-toggle-top {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: var(--transition);
  }
  
  .menu-toggle-top:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .menu-toggle-top .bar {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    transition: var(--transition);
  }
  
  .mobile-quick-menu .quick-link {
    color: white;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
  }
  
  .mobile-quick-menu .quick-link:last-child {
    border-bottom: none;
  }
  
  .top-navbar .container {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
}


/* Styles our page */
.app-section-our {
  position:relative;
  width: 100%;
  background-size: auto 70%;
  background-repeat: no-repeat; /* Evita que se repita */
  padding: 80px 0px 100px 0px;
  /*display: flex;*/
  overflow: hidden;
}
.app-content-our {
  flex: 1;
  max-width: 70%; /* Changed from 50% to 100% for better mobile display */
  text-align: left;
  padding: 100px 0px 100px 100px;
}

.app-content-our img {
  mix-blend-mode: screen;
  background-blend-mode: overlay;
  height: 130px;
  width: auto;
  isolation: isolate;
  margin-left: -200px;
  filter: hue-rotate(5deg) saturate(200%) brightness(1.5) contrast(1.1);
  opacity: 1;
}
.section-title2-our {
  font-family: 'TT Supermolot Neue Medium', sans-serif, sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  font-size: 2rem;
  padding:0;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
.section-text-our {
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  margin-bottom: 30px;
  font-size: 1.6rem;
  opacity: 0.9;
}
.container-our {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 0px;
}

.benefits-section {
  position:relative;
  width: 100%;
  height: 100%; /* Añadido para ocupar todo el alto de la ventana */
  margin-top: -200px;
  background: url('assets/map-stations-curve.png') no-repeat;
  z-index: 1;
  /*background-position: right;*/
  background-position: center;
  background-size: contain;
  height: 150vh; /* Ajusta la altura para que se adapte al alto de la imagen */
  padding: 0px 0px 0px 0px;
  mix-blend-mode: screen;
  background-blend-mode: soft-light;
  isolation: isolate;
  filter: hue-rotate(355deg) saturate(150%) brightness(1);
  align-items: right;
  overflow: hidden;
  opacity: 0;
  animation: floatBackground-1 777s ease-in-out infinite;
}

@keyframes floatBackground-1 {
  0% {
    background-position: 85%;
  }
  50% {
    background-position: 86% 10px;
  }
  100% {
    background-position: 85%;
  }
}

.benefits-title-our {
font-family: 'TT Supermolot Neue Medium', sans-serif;
font-weight: 300; /* Puedes cambiarlo según el peso que necesites */
text-align: left;
font-size: 40px;
line-height: 1.2em;
margin-top: 400px;
margin-bottom: 10px;
margin-left: 0px;
color: var(--blue-accent);
}

.benefits-info {
  padding: 10px 0px 50px 0px;
}

.benefits-title {
  font-family: 'TT Supermolot Neue Medium', sans-serif;
  font-weight: 10;
  font-size: 2.1rem;
  padding-bottom: 10px;
 
}

.benefits-subtitle {
  font-size: 1.6rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-left: 125px;
  margin-right: 125px;
}

@media (max-width: 768px) {
  .benefits-grid {
      grid-template-columns: 300px;
  }
}


/* 📱 Responsive */
@media (max-width: 768px) {
  .benefits-title-our {
    font-size: 1.8rem;
  }

  .benefits-content {
    flex-direction: column; /* Acomoda en una sola columna */
    text-align: center;
  }

  .benefits-info {
    text-align: center;
  }

  .benefits-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .benefits-title-our {
    font-size: 1.5rem;
  }

  .benefits-subtitle {
    font-size: 0.9rem;
  }

  .btn-primary {
    width: 100%; /* Botón más accesible */
    padding: 14px 0;
  }
}




.benefits-card {
  padding: 10px 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #ffffff;
}

.benefits-content {
  padding: 0px; /* Opcional: agrega relleno si es necesario */
}

.benefits-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.benefits-icon {
  display: flex;
  padding-right: 20px;
  align-items: center;
}

.benefits-text h2 {
  font-family: 'TT Supermolot Neue Medium', sans-serif;
  font-weight: 500;
  font-size: 2em;   
  text-align: left;
  margin-bottom:10px ;
  color: rgb(255, 255, 255);
}

.benefits-text h3 {
  color: white;
  margin-top: -12px;
  line-height: 35px;
  font-family: 'TT Supermolot Neue Thin', sans-serif;
  font-weight: 400;
  text-align: left;
  font-size: 1.3em;
}



/* Tools Grid Section */


.tools-section {
  padding: 0px 0px 100px 0px;
  background: var(--background-gradient);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.tool-card {
  border-radius: 15px;
  padding: 20px;
  border-color: white;
  transition: transform 0.3s ease;

}

.tool-card p {
  padding: 30px 0px;
  font-family: 'TT Supermolot Neue Thin', sans-serif;
  font-size: 0.9rem;
  font-weight: 100;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-blue);
}

.tool-icon {
  margin-bottom: 20px;
  text-align: left;
}

.tool-card h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.tool-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-features li {
  font-family: 'TT Supermolot Neue Thin', sans-serif;
  color: white;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.4;
}

.tool-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--blue-accent);
  border-radius: 50%;
}

.tools-title {
  font-family: 'TT Supermolot Neue Medium', sans-serif, sans-serif;
  font-weight: 600; /* Puedes cambiarlo según el peso que necesites */
  padding: 150px 20px 10px 10px;
  line-height: 1.2em;
  font-size: 2.6rem;
  margin-bottom: 0px;
  text-align: center;
  background: aqua;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tools-subtitle {
  font-family: 'TT Supermolot Neue Thin', sans-serif, sans-serif;
  font-weight: 100; /* Puedes cambiarlo según el peso que necesites */
  padding: 0px 20px;
  font-size: 1.6rem;
  line-height: 2rem;  
  max-width: 85%;
  margin: 0 auto 50px;
  text-align: center;
  opacity: 0.8;
}





/*Plans-section*/
.plans-section {
  padding: 100px 0;
  background: #ffffff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  border-color: #000;
}

.plan-card {
  color: #5B5B5B;
  background: white;
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease;
  border: 2px solid rgba(162, 162, 162,0.5);
}



.plan-card h3 {
  color: #5f01da;
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: 'TT Supermolot Neue Medium', sans-serif;
}

.plan-title {
  font-family: 'TT Supermolot Neue Medium', sans-serif, sans-serif;
  font-weight:400; /* Puedes cambiarlo según el peso que necesites */
  line-height: 1.1em;
  font-size: 2.6rem;
  margin-bottom: 20px;
  text-align: center;
  background: #6029C7;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plan-subtitle {
  color: #7a7a7a;
  font-family: 'TT Supermolot Neue Thin', sans-serif, sans-serif;
  font-weight: 800; /* Puedes cambiarlo según el peso que necesites */
  padding: 0px 20px;
  font-size: 1.5rem;
  line-height: 2rem;  
  max-width: 85%;
  margin: 0 auto 50px;
  text-align: center;
  opacity: 0.8;
}

.plan-description {
  color: var(--text-color);
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1;
  opacity: 0.8;
}

.plan-featuresw h4 {
  color: #5B5B5B;
  font-size: 1.0rem;
  margin-bottom:10px;
  font-family: 'TT Supermolot Neue Medium', sans-serif;
}

.plan-features p {
  color: #5B5B5B;
}

.plan-features ul {
  list-style: none;
  list-style-position: inside; /* Asegura que el ícono del punto esté alineado */
  padding-left: 20px; /* Ajusta la indentación si es necesario */
  margin-bottom: 0px;
}


.plan-features ul li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.8;
}

.plan-features ul li:before {
  position: absolute;
  left: 0;
  color: #5B5B5B;

}

.plan-contact {
  color: var(--text-color);
  font-size: 0.9rem;
  margin: 30px 0;
  opacity: 0.8;
}

.plan-more-info {
  display: block;
  text-align: center;
  color: var(--text-color);
  margin-top: 20px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.plan-more-info:hover {
  opacity: 1;
}

.btn-secondary {
  text-align: center;
  display: block;
  background: #00FFFF;
  color: #000;
}

.btn-secondary:hover {
  transform: translateY(-3px);
}


/*Porque conviene enered*/

.conviene-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 auto;
}

.conviene-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px;
    width: 200px;
}

.conviene-icon-circle {
    width: 100px;
    height: 100px;
    background-color: var(--blue-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.conviene-icon {
    width: 40px;
    height: 40px;
    color: #0d5c63;
}

.conviene-benefit-text {
    text-align: center;
    color: #888;
    font-size: 16px;
    line-height: 1.4;
}







/*Clientes Section*/
.clients-section {
  background: #ffffff;
  
}

.clients-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.main-video {
  position: relative;
  padding-bottom: 72%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.main-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.client-cases {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Cambiado a grid para mejor organización */
  gap: 20px;
}

.case-card {
  border-radius: 15px;
  background-color: #0032EA;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  height: 100%; /* Asegura altura consistente */
}

.case-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0px 0px;
  aspect-ratio: 16/9; /* Mantiene proporción de video */
}

.case-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Asegura que la imagen cubra todo el espacio */
  display: block;
}

.case-card h3 {
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: 1.2rem;
  margin-top: 15px;
  text-align: center;
}

/*mobile responsive our page*/

@media (max-width: 768px) {
  .container-2 {
    flex-direction: column-reverse;
  }

  .app-section {
    padding: 0px 0;
    background-position: top center;
  }
  
  .app-section .container {
    flex-direction: column;
    text-align: center;
  }
  .app-content-our {
    text-align: center;
    padding: 0 15px;
    padding: 30px 0px 20px 0px;
  }
  .app-content-our img {
    width: 80%;
  }
  .section-text-our {
    font-family: 'TT Supermolot Neue Regular', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2em;

  }
  .section-title2-our {
    font-size: 2.5rem;
  }

  @media (max-width: 992px) {
    .tools-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .tools-grid {
      grid-template-columns: 1fr;
    }
  }
}

@media (max-width: 992px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .why-enered-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-enered-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-cases {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .case-card {
    flex: 1;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .case-card {
    min-width: 100%;
  }
}


/* Graph Section */

/*Anillo*/
.features-ring-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  width: 100%;
}

.features-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 80.6%;
  align-items: center; /* Alinea verticalmente */
  justify-content: space-between; /* Separa ambos elementos */
  gap: 40px; /* Espacio entre la lista y la imagen */
}



/* Seccion Caracteristicas*/

.features-list {
  flex: 1;
  max-width: 30%;
}

.feature-title {
  font-family: 'TT Supermolot Neue Medium', sans-serif;
  font-weight: 400;
  font-size: 1.75rem;
  cursor: pointer;
  position: relative;
  display: inline-flexbox; /* Asegura que la línea se ajuste solo al texto */
  padding-bottom: 5px;
  margin-bottom: 10px;
  transition: color 0.3s ease-in-out;
}


.feature-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* Coloca la línea justo debajo del texto */
  width: 0;
  height: 2px;
  background-color: #00eaff; /* Color de la línea */
  transition: width 0.3s ease-in-out;
}

.feature-title:hover::after {  
  width: 100%; /* Hace que la línea se expanda */
}


.feature-title:hover {
  color: #00eaff; /* Cambia el color al pasar el ratón */
}

.feature-content {
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  font-weight: 200;
  display: none;
  font-size: 1rem;
  margin-bottom: 15px;
}

.feature-content.active {
  max-height: 200px;
  opacity: 1;
}


/*Linea + Circulo*/







/*Anillo*/

.graph-container {
  flex: 2;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.interactive-graph {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}



.graph-orbit {
  position: relative;
  width: 40vw; /* 50% del ancho de la pantalla */
  height: 40vw; /* Mantiene proporción con el ancho */
  max-width: 1200px; /* Tamaño máximo */
  max-height: 1200px;
  background-image: url('anillo-enered.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.graph-center-gif {
  width: 35%; /* Tamaño proporcional a la pantalla */
  max-width: 220px; /* Tamaño máximo */
  margin-top: -14%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}


.custom-container {
  position: absolute;
  top: 36%;
  left: 47%;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.custom-icon {
  width: 1.2vw;
  height: 1.2vw;
  object-fit: contain;
}

.custom-elipse {
  width: 100%;
  aspect-ratio: 2.5;
  background-size: cover;
}

.custom-sphere {
  position: absolute;
  width: 12vw;
  height: 12vw;
  max-width: 3vw;
  max-height: 3vw;
  background: radial-gradient(circle at 38% 25%, #ffffff 0%, #9C41E0 40%, #3F1483 60%, #0E054A 80%);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.0);
  cursor: pointer;
  border: none;
  outline: none;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.custom-sphere::after { /*Sombra*/
  content: "";
  position: absolute;
  width: 2.5vw;
  height: 0.7vw;
  background: radial-gradient(ellipse at center, 
    rgba(0, 0, 0, 0.99),
    rgba(63, 20, 131, 0.5),
    rgba(156, 65, 224, 0.2),
    rgba(0, 0, 0, 0)
  );
  bottom: -1.25vw;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(4px);
}

.custom-sphere i {
  color: white;
  font-size: 20px;
}

.custom-label {
  position: absolute;
  color: #ffffff;
  font-size: 1.2vw;
  font-family: 'TT Supermolot Neue Thin', sans-serif;
  text-align: center;
  font-weight: 600;
  width: 120px;
  transform: translate(-50%, -50%);
}
.active-label {
  color: aqua; /* Color del texto resaltado */
  font-weight: bold;
  transition: color 0.3s ease;
}




/*Icono de check*/

.custom-list {
  list-style: none; /* Quita los puntos de la lista */
  padding: 0;
}

.custom-list li {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  margin-bottom: 5px; /* Espaciado entre elementos */
}

.icon-circle {
  width: 60px; /* Tamaño del círculo */
  height: 60px;
  background-color: aqua; /* Color del círculo */
  border-radius: 50%; /* Hace que el div sea un círculo */
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.icon-circle img {
  width: 35px; /* Tamaño del icono */
  height: auto;
  margin: 0 auto; /* Centra la imagen dentro del círculo */
}


.icon-container {
  width: 20px;
  height: 20px;
  background-color: aqua; /* Color del círculo */
  border-radius: 50%; /* Hace que sea un círculo */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px; /* Espaciado entre icono y texto */
}

.icon-container img {
  width: 40%; /* Tamaño del icono dentro */
  height: auto;
}



/* Nueva media query para pantallas inferiores a 700px */
@media screen and (max-width: 700px) {
  .features-container {
    flex-direction: column; /* Apila los elementos verticalmente */
    gap: 30px; /* Espacio entre los contenedores */
  }
  
  .interactive-graph {
    width: 100%; /* Ocupa todo el ancho disponible */
    height: 100%; /* Ocupa todo el alto disponible */
  }
  .features-list {
    max-width: 100%; /* Ocupa todo el ancho disponible */
    width: 100%;
  }


  .custom-label {
    font-size: 1.15vw;
  }
}




/* Styles Enered page */
.enered-bg {
  position: absolute;
  top: -130px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -9999;
  background:  url(assets/bg-tanque.webp);
  background-size:cover;
  background-position: center;
}

.enered-hero-section {
  position: relative;
  width: 100%;
  background-position: center;
  padding: 190px 0px 200px 0px;
  align-items: center;
  overflow: hidden;
  margin-bottom: -130px;
  animation: floatBackground 4s ease-in-out infinite;
}

.enered-title {
  font-family: 'TT Supermolot Neue Medium', sans-serif, sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  font-size: 3.1rem;
  padding:0;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.enered-subtitle {
  font-family: 'TT Supermolot Neue Thin', sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  margin-bottom: 30px;
  font-size: 2.5rem;
  opacity: 0.9;
  line-height: 2.2rem;
}

.supply-chain-section {
  background: rgb(11, 13, 37);
  padding: 0 0;
  position: relative;
}

.supply-container {
 
  width: 100%;
  height: auto;
  max-width:100%;
  padding: 10px 0;
  background-image: url('assets/img-supply-chain.webp');
  background-position:center;
  background-size:cover;
  transform: translateY(0%);
  transition: var(--transition);
  z-index: -1;
}


.supply-chain-section .section-title {
  color: #00FFFF;
  margin-bottom: 60px;
}

.supply-chain-visual {
  position: relative;
  min-height: 900px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.supply-title {
  font-family: 'TT Supermolot Neue Medium', sans-serif, sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  padding: 0px 200px;
  line-height: 1.2em;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-align: left;
  background: var(--blue-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.chain-element {
  position: absolute;
  color: #00FFFF;
  font-size: 2.0rem;
}

.chain-text {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  /*background: rgba(26, 11, 46, 0.8);*/
  border-radius: 4px;
  /*border: 1px solid #00FFFF;*/
}

.titulo-supply {
  font-family: 'TT Supermolot Neue Medium', sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: #00FFFF;
  left: 7%;  
  bottom: 70%;

}

.granel {
  left: 31%;
  bottom: -2%;
}

.flota {
  left:   49%;
  bottom: 16%;
}

.delivery {
  left: 65%;
  bottom: 33%;
}

.industria {
  left: 76%;
  bottom: 50%;
}



.fleet-title {
  font-family: 'TT Supermolot Neue Medium', sans-serif, sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  padding: 20px 20px 0px 10px;
  line-height: 1.2em;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fleet-subtitle {
  
  font-family: 'TT Supermolot Neue Thin', sans-serif, sans-serif;
  font-weight: 100; /* Puedes cambiarlo según el peso que necesites */
  padding: 0px 20px;
  font-size: 1.6rem;
  line-height: 2rem;  
  max-width: 85%;
  margin: 0 auto 50px;
  text-align: center;
  opacity: 0.8;
}

.fleet-container {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}

.fleet-card {
  padding: 25px 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #00FFFF;
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.fleet-icon {
  display: flex;
  padding: 20px 0px
}

.fleet-card h3 {
  font-family: 'TT Supermolot Neue Regular', sans-serif, sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: left;
  color: var(--blue-accent);
}

.fleet-card p {
  text-align: left;
  line-height: 1.2rem;
  padding-bottom: 1em;
}

.fleet-card ul {
  text-align: left;
}

.coverage-section {
  padding: 100px 0;
  background: #fff;
}

.container-full {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.coverage-title {
  font-family: 'TT Supermolot Neue Medium', sans-serif, sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  padding: 0px 20px 10px 10px;
  line-height: 1.2em;
  font-size: 2.7rem;
  text-align: center;
  -webkit-background-clip: text;
  background-color: #5d04a1;
  background-clip: text;
  color: transparent;




}

.coverage-subtitle {
  font-family: 'TT Supermolot Neue Thin', sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: #717171;
  padding-top: 20px;
  text-align: left;
  margin-bottom: 50px;
  opacity: 0.8;
  line-height: 1;
}

.coverage-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
 

}

.coverage-map {
  flex: 1;
  max-width: 40%;
 
}

.coverage-map img {
  width: 100%;
  height: auto;
}

.coverage-zones {
  flex: 1;
  display: flex;
  gap: 30px;
}

.zone {
  flex: 1;
}

.zone h3 {
  color: #0032EA;
  font-size: 1.5rem;
}

.zone ul {
  list-style: none;
  padding: 0;
}

.zone ul li {
  color: #000;
  margin-bottom: 10px;
  padding-left: 100px;
  font-size: 1.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.zone ul li:hover {
  opacity: 1;
  transform: translateX(5px);
}


/*mobile responsive page*/

@media (max-width: 768px) {
  .supply-chain-visual {
    min-height: 300px;
  }
  
  .chain-element {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .coverage-content {
    flex-direction: column;
  }
  
  .coverage-map {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .coverage-zones {
    flex-direction: column;
  }
  
  .coverage-title {
    font-size: 2rem;
  }
}


/* Styles Projects page */

.project-hero-section {
  position: relative;
  width: 100%;
  height: 788px;
  background-position: center;
  /*padding: 80px 0px 100px 0px;*/
  align-items: center;
  overflow: hidden;
  background-color: white;
  animation: floatBackground 4s ease-in-out infinite;
}


.project-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('assets/bg-planing.png');
  background-size: cover;
  background-position: center; /* This centers both horizontally and vertically */
}



.project-title {
  font-family: 'TT Supermolot Neue Demibold', sans-serif, sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  font-size: 3.1rem;
  line-height: 1.2em; 
  margin-top: 180px;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-section {
  padding-top: 100px;
  background: #fff;
}

.process-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 123px;
  width: 82%;
  height: 5px;
  background: url('assets/line-color-process.svg') repeat-x;
  background-size: contain;
  animation: showProcessLine 1.5s ease-out forwards;
  animation-delay: 0.5s; /* Añadido delay de 0.5 segundos */
  opacity: 0; /* Asegura que la línea esté invisible antes de comenzar */
}

@keyframes showProcessLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 82%;
    opacity: 1;
  }
}

.process-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-icon {
  width: 120px;
  height: 120px;
  margin: 10px auto 20px;
  margin-top: 30px;
  background: #0000FF; /* Azul */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-icon-general {
  margin-bottom: 53px
}

.sp-icon-prestudio {
  margin-bottom: 20px
}

.sp-icon-itf {
  margin-bottom: 20px
}

.sp-icon-build {
  margin-bottom: 20px
}

.sp-icon-operation {
  margin-bottom: 0px
}

.process-icon img {
  width: 150px;
  height: auto;
}

.process-item .osi {
  margin-bottom: 10px;
  height: 39px;
}

.process-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-family: 'TT Supermolot Neue Medium', sans-serif;
  font-weight: 400;
}

.process-item h2 {
  font-size: 1.2rem;
  line-height: 1.1em;
  margin-bottom: 15px;
  font-family: 'TT Supermolot Neue Medium', sans-serif;
  font-weight: 400;
  color: #ede7e7;
}

.process-item ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  background-color: #0276b500;
}

.process-item ul li {
text-align: left;
  color: #5B5B5B;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .process-grid {
    flex-wrap: wrap;
  }
  
  .process-item {
    flex: 1 1 45%;
  }
  
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-item {
    flex: 1 1 100%;
  }
}

.process-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-bottom: 10px;
  position: relative;
}

/* Colores específicos para cada línea punteada */

.dot.gray {
  background-color: #A5A5A5; 
  box-shadow: 0 0 0 5px #A5A5A5;
}

.dot.blue { 
  background-color: #5B9BD5; 
 
}
.dot.green { 
  background-color: #70AD47; 
  box-shadow: 0 0 0 5px #70AD47;
}
.dot.yellow { 
  background-color: #FFC000; 
  box-shadow: 0 0 0 5px #FFC000;
}
.dot.blue-dark { 
  background-color: #4472C4; 
  box-shadow: 0 0 0 5px #4472C4;
}

.dotted-line {
  height: 50px;
  width: 3px;
  background-size: 3px 8px;
  background-repeat: space;
  background-position: center;
}

/* Colores específicos para cada línea punteada */

.dotted-line.gray { 
  background-image: radial-gradient(circle, #A5A5A5 2px, transparent 2px);
}

.dotted-line.blue { 
  background-image: radial-gradient(circle, #5B9BD5 2px, transparent 2px);
}
.dotted-line.green { 
  background-image: radial-gradient(circle, #70AD47 2px, transparent 2px);
}
.dotted-line.yellow { 
  background-image: radial-gradient(circle, #FFB800 2px, transparent 2px);
}
.dotted-line.blue-dark { 
  background-image: radial-gradient(circle, #4472C4 2px, transparent 2px);
}

@media (max-width: 768px) {
  .process-dots {
    margin: 20px 0;
  }
  
  .dotted-line {
    height: 20px;
  }
}






/*Soluciones - Proyectos*/

.soluciones-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
            max-width: 90%;
            margin: 0 auto;
            
        }

        .soluciones-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 340px;
            transition: transform 0.3s ease;
        }

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

        .soluciones-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .soluciones-icon-container {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -40px 0 0 20px; /* Adjusted margin to move it to the left */
            position: relative;
        }

        .soluciones-icon-container.blue {
            background-color: #0a3283;
        }

        .soluciones-icon-container.purple {
            background-color: #7030a0;
        }

        .soluciones-icon {
            width: 25px;
            height: 25px;
            
        }

        .soluciones-content {
           margin-top: -25px;
            padding: 20px;
            text-align: left;
        }

        .soluciones-title {
            color: #0a3283;
            font-size: 24px;
            font-weight: bold;
            margin: 15px 0;
        }

        .soluciones-description {
            color: #666;
            font-size: 15px;
            line-height: 1.5;
            min-height: 120px;
        }

        .soluciones-button {
            background-color: #7030a0;
            color: white;
            border: none;
            font-family: 'TT Supermolot Neue Medium', sans-serif;
            border-radius: 7px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-items: center;
            margin: 0 auto;
            display: flex;
        }

        .soluciones-button:hover {
            background-color: #5b2680;
        }




/*Beneficios Cards - Proyectos*/

.beneficios-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 30px 20px;
            max-width: 100%;
            margin: 0 auto;
            background-color: transparent;
           
        }

        .beneficios-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.245);
            overflow: hidden;
            width: 230px;
            padding: 30px 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .beneficios-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .beneficios-icon-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            height: 70px;
        }

        .beneficios-icon {
            width: 60px;
            height: 60px;
            /* Los iconos serán reemplazados con imágenes del proyecto */
          }

          .beneficios-title {
              color: #0039a6;
              font-size: 20px;
              font-weight: bold;
              margin-bottom: 15px;
          }
  
          .beneficios-description {
              color: #777;
              font-size: 14px;
              line-height: 1.5;
          }
  
          @media (max-width: 1024px) {
              .beneficios-container {
                  padding: 20px 10px;
              }
              
              .beneficios-card {
                  width: calc(50% - 20px);
                  min-width: 220px;
              }
          }
  
          @media (max-width: 768px) {
              .beneficios-card {
                  width: 100%;
                  max-width: 300px;
              }
          
            }




/* Project Plan Grid Section */
.project-plan-section {
  padding: 0px 0px 100px 0px;
  background: #fff;
}

.project-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  align-items: start;
}

.tool-card {
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease;

}

.tool-card p {
  padding: 30px 0px;

}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-blue);
}

.tool-icon {
  margin-bottom: 20px;
  text-align: left;
}

.tool-card h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.tool-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-features li {
  color: var(--text-color);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.4;
}

.tool-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--blue-accent);
  border-radius: 50%;
}

.project-plan-title {
  font-family: 'TT Supermolot Neue Medium', sans-serif, sans-serif;
  font-weight: 700; /* Puedes cambiarlo según el peso que necesites */
  padding: 30px 20px 0px 10px;
  line-height: 1.2em;
  font-size: 2.8rem;
  text-align: center;
  background: #592CC9;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.project-plan-subtitle {
  
  font-family: 'TT Supermolot Neue Thin', sans-serif, sans-serif;
  font-weight: 100; /* Puedes cambiarlo según el peso que necesites */
  padding: 0px 20px;
  font-size: 1.6rem;
  line-height: 2rem;  
  max-width: 85%;
  margin: 0 auto 50px;
  text-align: center;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .project-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .project-plan-grid {
    grid-template-columns: 1fr;
  }
}

.project-plan-card {
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #592CC9;
  text-align: left;
}

.project-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.project-plan-card p {
  color: #000;
}

.project-plan-card ul {
  color: #000;
}

.project-plan-card a {
  margin: 60px 0px 40px 0px;
}

.project-plan-icon {
  display: flex;
  padding: 20px 0px
}

.project-plan-card h3 {
  font-family: 'TT Supermolot Neue Regular', sans-serif, sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 40px;
  text-align: left;
  color: #002180;
}

.project-skills-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
}

.line-decoration {
  width: 60%;
  height: 12px;
  background: #70AD47;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* Centra el elemento horizontalmente */
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 66%;
  margin: 0 auto;
}

.skill-item {
  text-align: center;
  padding: 20px;
}

.skill-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: #70AD47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-icon img {
  width: 60px;
  height: 60px;
}

.skill-item h3 {
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.skill-item p {
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  font-size: 1rem;
  color: var(--dark-blue);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

/* Styles Services page */

.services-hero-section {
  position: relative;
  width: 100%;
  height: 788px;
  background-position: center;
  /*padding: 80px 0px 100px 0px;*/
  align-items: center;
  overflow: hidden;
  animation: floatBackground 4s ease-in-out infinite;
}

.services-content-section {
  flex: 1;
  max-width: 100%; /* Changed from 50% to 100% for better mobile display */
  text-align: left;
  padding: 240px 0px 250px 120px;
}


.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:  url('assets/baner-services.png');
  background-size: cover;
  background-position: center bottom; /* This centers both horizontally and vertically */
}

.services-title {
  font-family: 'TT Supermolot Neue Demibold', sans-serif, sans-serif;
  font-weight: 400; /* Puedes cambiarlo según el peso que necesites */
  font-size: 2.9rem;
  line-height: 1.2em;
  -webkit-background-clip: text;
  background-clip: text;
  color: white;
  margin-top: 50px;
}

.services-subtitle {
  font-family: 'TT Supermolot Neue Thin', sans-serif, sans-serif;
  font-weight: 800; /* Puedes cambiarlo según el peso que necesites */
  font-size: 1.9rem;
  line-height: 2.8rem;  
  margin: 0 auto 30px;
  color: white;
}

/* 404 styles page */

.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.error-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.error-animation {
  position: absolute;
  left: 38%;
  top: 0%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.error-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.error-title {
  font-family: 'TT Supermolot Neue Medium', sans-serif;
  font-size: 6rem;
  color: #fff;
}

.error-subtitle {
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  font-size: 2rem;
  color: var(--blue-accent);
  margin-bottom: 1.5rem;
}

.error-text {
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .error-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .error-animation {
    max-width: 300px;
  }

  .error-title {
    font-size: 3rem;
  }

  .error-subtitle {
    font-size: 1.5rem;
  }
}

.steps-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 60px;
  padding: 20px 0;
}

.steps-timeline::after {
  content: '';
  position: absolute;
  top: 160px;
  left: 7%;
  height: 3px;
  background: url('assets/line-color-process.svg') repeat-x;
  background-size: contain;
  animation: showProcessLine 1.5s ease-out forwards;
  animation-delay: 0.5s; /* Añadido delay de 0.5 segundos */
  opacity: 0; /* Asegura que la línea esté invisible antes de comenzar */
  z-index: 1;
}

.step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 130px;
  left: 40%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Colores específicos para cada punto */
.step-item:nth-child(1) .step-dot { background: #0032EA; }
.step-item:nth-child(2) .step-dot { background: #002180; }
.step-item:nth-child(3) .step-dot { background: #592CC9; }
.step-item:nth-child(4) .step-dot { background: rgb(135,39,185) }
.step-item:nth-child(5) .step-dot { background: #00a7a7; }


.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.step-icon {
  width: 120px;
  height: 120px;
  top: 0;
  margin-left: -50px;
  background: #0032EA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.step-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.step-content {
  position: relative;
  width: 100%;
}

.step-arrow {
  background: #0032EA;
  color: white;
  padding: 15px 20px;
  position: relative;
  -webkit-mask: url('/assets/arrow.svg') no-repeat center;
  mask: url('/assets/arrow.svg') no-repeat center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  width: 220px;
  text-align: center;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arrow h3 {
  font-size: 1rem;
  margin: 0;
  color: white;
  font-family: 'TT Supermolot Neue Regular', sans-serif;
  
}

.step-number {
  width: 60px;
  height: 60px; 
  background: #808080;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2.5rem;
  margin-top: 15px;
}

.number-1 {
  background: #0032EA;
}

.number-2 {
  background: #002180;
}

.number-3 {
  background: #592CC9;
}

.number-4 {
  background: rgb(135,39,185);
}

.number-5 {
  background: aqua;
}



/* Colores específicos para cada paso */
.step-item:nth-child(1) .step-icon,
.step-item:nth-child(1) .step-arrow { background: #0032EA; }

.step-item:nth-child(2) .step-icon,
.step-item:nth-child(2) .step-arrow { background: #002180; }

.step-item:nth-child(3) .step-icon,
.step-item:nth-child(3) .step-arrow { background: #592CC9; }

.step-item:nth-child(4) .step-icon,
.step-item:nth-child(4) .step-arrow { background: #8727B9 }

.step-item:nth-child(5) .step-icon,
.step-item:nth-child(5) .step-arrow { background: #009FA9 }


@media (max-width: 992px) {
  .steps-timeline {
    flex-wrap: wrap;
    gap: 30px;
  }

  .step-item {
    flex: 1 1 30%;
  }

  .step-arrow {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .step-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {
  .step-item {
    flex: 1 1 100%;
  }
}


/* Estilos de RedAcademy */


/*Hero Section RedAcademy*/
.heroblog-section {
  background: url('assets/baner-red-academy.webp') no-repeat center/ contain;
  display: flex;
  background-size: cover;

  align-items: center;
  justify-content: center;
  color: white;
}

.heroblog-content {
  text-align: center;
  padding: 3rem;
 
}

.heroblog-content h1 {
  font-size: 3.2rem;
  
}

.heroblog-content p {
  font-size: 1.2rem;
  line-height: 1.5;
}



.recursos-container {       
  margin: 0 auto;
  padding: 70px 150px;
  background-color: #f5f5f5;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background-color: #f5f5f5;
}

.title {
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: bold;
  margin-left: -60px;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 7px;
  padding: 10px 20px;
  width: 300px;   
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  padding: 5px;
  font-size: 14px;
  
}

.search-icon {
  margin-right: 10px;
  color: #999;
}

.filter-options {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0px;
  gap: 20px;
}

.filter-option {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.filter-option.active {
  font-weight: bold;
  text-decoration: underline;
}

.category-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 18px;
  color: var(--color-light);
  text-decoration: none;
  font-weight: 500;
  gap: 8px;
}

.webinars {
  background-color: #0054ff;
}

.entrevistas {
  background-color: var(--color-primary);
}

.capacitaciones {
  background-color: #0c2b7a;
}

.cursos {
  background-color: #9e2dc9;
}

.blogs {
  background-color: #017171;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.resource-card {
  background-color: var(--color-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-image {
  height: 250px;
  position: relative;
  background: linear-gradient(to right, #7031c7, #4a148c);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.icon-circle {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--color-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 35px;
  height: 35px;
  opacity: 1;
}

.card-image h2 {
  position: absolute;
  bottom: 65px;
  left: 35px;
  line-height: 35px;
  color: var(--color-light);
  font-size: 2rem;
  font-weight: bold;
  max-width: 60%;
}

.card-content {
  padding: 20px;
}

.resource-type {
  color: var(--color-primary);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
  border-bottom: 1.59px var(--color-primary) solid;
}

.resource-title {
  color: var(--color-primary);
  font-size: 2.4rem;
  max-width: 80%;
  line-height: 40px;
  margin-bottom: 40px;
  margin-top: 20px;
  
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}

.date {
  color: var(--color-primary);
  font-weight: bold;
}

.view-button {
  color: var(--color-primary);
  font-weight: bold;
  text-decoration: none;
  margin-right: 50px;
}



 /* Estilos específicos con prefijo grifo-hero */
 .grifo-hero-container {
  z-index: -9999;
  position: relative;
  background: url('assets/baner_enered_sites.webp') no-repeat center center;
  background-size: 100% auto;
  height: 95vh;  
  background-position: center;
  display: flex;
  justify-content: center;
  
}

.grifo-hero-content {
  position: relative;
  z-index: 2;
  padding: 200px 20px;
  text-align: center;
  max-width: 1200px;
  
}

.grifo-hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: -10px;
  color: #00e0ff;
}

.grifo-hero-subtitle {
  font-size: 2.5rem;
  margin-bottom: 0px;
}

.grifo-hero-description {
  font-family: 'TT Supermolot Neue Thin', sans-serif;
  font-size: 1.7rem;
  margin-bottom: 40px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.grifo-hero-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.grifo-hero-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 150px;
}

.grifo-hero-option:hover {
  transform: translateY(-5px);
}

.grifo-hero-icon-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.grifo-hero-option:nth-child(1) .grifo-hero-icon-container {
  background-color: #1144ff;
}

.grifo-hero-option:nth-child(2) .grifo-hero-icon-container {
  background-color: #0c2d8a;
}

.grifo-hero-option:nth-child(3) .grifo-hero-icon-container {
  background-color: #7b3dbd;
}

.grifo-hero-option:nth-child(4) .grifo-hero-icon-container {
  background-color: #a13dbd;
}

.grifo-hero-icon {
  width: 40px;
  height: 40px;
  fill: white;
}

.grifo-hero-option-text {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}

.grifo-hero-logo {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  color: white;
}



@keyframes grifo-hero-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(1.5);
    opacity: 0.4;
  }
}

@media (max-width: 768px) {
  .grifo-hero-title {
    font-size: 30px;
  }
  
  .grifo-hero-subtitle {
    font-size: 24px;
  }
  
  .grifo-hero-description {
    font-size: 16px;
  }
  
  .grifo-hero-options {
    gap: 10px;
  }
  
  .grifo-hero-option {
    width: 120px;
  }
  
  .grifo-hero-icon-container {
    width: 80px;
    height: 80px;
  }
}


/*grifo virtual*/

 /* Estilos para la sección de herramientas */
 .tools-section2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;  

  margin: 0 auto;
  padding: 40px 20px;
  background-color: transparent;
  color: #fff;
}

.tools-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-left: 100px;
  padding-right: 100px;
}

@media (max-width: 768px) {
  .tools-container {
      grid-template-columns: 1fr;
  }
}

.tools-item {
  display: flex;
  align-items: center; /* Centrado vertical por defecto */
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
}

.tools-circle {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.tools-icon {
  width: 50px;
  height: 50px;
  fill: white;
  transition: transform 0.3s ease;
}

.tools-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centrado vertical por defecto */
}

.tools-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.tools-subtitle {
  font-size: 16px;
  margin: 8px 0 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Colores para los círculos */
.tools-circle-1 {
  background-color: #1a73e8;
}

.tools-circle-2 {
  background-color: #0d47a1;
}

.tools-circle-3 {
  background-color: #7b1fa2;
}

.tools-circle-4 {
  background-color: #9c27b0;
}

/* Efectos de hover */
.tools-item:hover {
  align-items: flex-start; /* Alinea al inicio cuando hay hover */
}

.tools-item:hover .tools-content {
  justify-content: flex-start; /* Alinea al inicio cuando hay hover */
}

.tools-item:hover .tools-circle {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.tools-item:hover .tools-circle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  animation: tools-pulse 1.5s infinite;
}

.tools-item:hover .tools-icon {
  transform: scale(1.1);
}

.tools-item:hover .tools-subtitle {
  max-height: 100px;
  opacity: 1;
  margin-top: 8px;
}

@keyframes tools-pulse {
  0% {
      opacity: 0.4;
      transform: scale(0.8);
  }
  50% {
      opacity: 0.2;
      transform: scale(1.2);
  }
  100% {
      opacity: 0;
      transform: scale(1.4);
  }
}

/* Estilos para el BLOG */

 /* Estilos generales del contenedor */
 .blog-container {
  background-color: white;
  display: flex;
  max-width: 82%;
  margin: 0 auto;
  padding: 20px;
  gap: 30px;
  font-family: inherit;
}

/* Estilos de la sección principal del blog */
.blog-section {
  flex: 1;
  padding: 0;
}

.blog-title {
  text-align: center;
  color: #5f259f;
  margin-bottom: 40px;
  font-size: 32px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #00D0D4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  padding: 20px;
}

.blog-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #5f259f;
  font-size: 14px;
}

.blog-card-title {
  color: #5f259f;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-date-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.blog-date {
  color: #666;
  font-size: 14px;
}

.blog-cta {
  color: #5f259f;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.blog-cta:hover {
  color: #7c3cbf;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.blog-pagination-btn {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  color: #5f259f;
  transition: all 0.2s ease;
}

.blog-pagination-btn:hover {
  background: #f5f0ff;
  border-color: #5f259f;
}

.blog-pagination-btn.blog-active {
  background: #5f259f;
  color: white;
  border-color: #5f259f;
}

/* Estilos de la barra lateral */
.blog-sidebar {
  width: 310px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.blog-search {
  position: relative;
  margin-bottom: 30px;
}

.blog-search-input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.blog-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.blog-categories {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.blog-categories-title {
  color: #5f259f;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.blog-categories-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.blog-categories-item {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.blog-categories-item::before {
  content: "•";
  color: #5f259f;
  margin-right: 10px;
}

.blog-categories-link {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-categories-link:hover {
  color: #5f259f;
}

.blog-view-all {
  color: #5f259f;
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-top: 15px;
  transition: color 0.2s;
}

.blog-view-all:hover {
  color: #7c3cbf;
}

/* Contenedor unificado para widgets */
.blog-widgets-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.blog-widget {
  padding: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.blog-widget:last-child {
  border-bottom: none;
}

.blog-widget-title {
  color: #5f259f;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.blog-widget-description {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.blog-widget-icon {
  background-color: #00D0D4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.blog-form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 15px;
  outline: none;
}

.blog-form-button {
  width: 100%;
  padding: 12px 15px;
  background-color: #5f259f;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.blog-form-button:hover {
  background-color: #7c3cbf;
}


.blog-header {
  background: linear-gradient(90deg, #7c3cbf, #5f259f);
  padding: 0 150px;
  height: 70px;
  display: flex;
  align-items: left;
  justify-content: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}
@media (max-width: 768px) {
  .blog-header {
    padding: 0 20px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    padding: 10px 0;
  }

  .blog-nav-item {
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold; 
  }
}
  .blog-nav {
      display: flex;
      gap: 10px;
      justify-content: center;
      align-items: center;
      height: 100%;
  }

  .blog-nav-item {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
      color: #ffffff;
      padding: 0 30px;
      font-size: 16px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.2px;
      cursor: pointer;
      transition: color 0.3s ease;
  }

  .blog-nav-item:hover {
      color: #fdfdfd;
      font-weight: bold;
  }

  .blog-nav-item::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 80%;
      height: 3px;
      font-weight: bold;
      background: whitesmoke;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transform-origin: center;
  }

  .blog-nav-item:hover::after {
      transform: translateX(-50%) scaleX(1);
  }

  .blog-nav-item.active::after {
      transform: translateX(-50%) scaleX(1);
      box-shadow: 0 0 10px rgba(127, 90, 240, 0.7);
      font-weight: bold;
  }

  /* Estilos para el dropdown */
  .blog-dropdown {
      position: relative;
  }

  .blog-dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #1a1a1a;
      min-width: 200px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 1;
      border-radius: 8px;
      margin-top: 15px;
      transform: translateY(-20px);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

  .blog-dropdown:hover .blog-dropdown-content {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
  }

  .blog-dropdown-item {
      display: block;
      color: #ffffff;
      padding: 15px 20px;
      text-decoration: none;
      font-size: 14px;
      transition: background-color 0.3s ease;
  }

  .blog-dropdown-item:hover {
      background-color: #2a2a2a;
      color: #7f5af0;
  }

  /* Triángulo para el dropdown */
  .blog-dropdown-content::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 20px;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid #1a1a1a;
  }

@media (max-width: 992px) {
  .blog-container {
    flex-direction: column;
  }
  
  .blog-sidebar {
    width: 100%;
    order: -1; /* Coloca la barra lateral arriba en dispositivos móviles */
  }
  
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 480px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/*Hero webinar*/

.hero-webinar {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  padding: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-webinar__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/baner-webinar1.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: 1;
}

.hero-webinar__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  gap: 2rem;
  color: white;

  
}

.hero-webinar__info {
  max-width: 50%;
}

.hero-webinar__tag {
  background-color: #00f0ff;
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-webinar__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-webinar__meta {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-webinar__form-card {
  background: white;
  color: black;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 450px;
}

.hero-webinar__form-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #6328b1;
}

.hero-webinar__form input[type="text"],
.hero-webinar__form input[type="email"],
.hero-webinar__form input[type="tel"] {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  border: 1.6px solid #7030c3;;
  border-radius: 8px;
}


.hero-webinar-vehiculos {
  margin-bottom: 20px;
  
}

.hero-webinar-label {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 7px;
  color: #555;
}

.hero-webinar-options {
  display: flex;;
  gap: 10px;
}

.hero-webinar-option span {
  white-space: nowrap;
}


.hero-webinar-option {
  flex: auto; /* que los elementos puedan crecer o encoger */
  min-width: 20px; /* mínimo razonable para no romper números */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #8a42e8;
  padding: 9px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: #888;
  background-color: white;
  text-align: left;
}


.hero-webinar-option:hover {
  background-color: rgba(255, 161, 161, 0.5);
}

.hero-webinar-option input[type="radio"]:checked + span {
  color: #4c0bd1;
  font-weight: bold;
 
}


.hero-webinar__button {
  width: 60%;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: 0 auto;
  background: #591c93;
  color: white;
  border: none;
  padding: 0.7rem;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-webinar__button:hover {
  background: #5a23b1;
}

.hero-webinar__privacy {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  opacity: 0.6;
  text-align: center;
}





.hero-webinar-contacto-options {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-auto-rows: minmax(40px, auto);
  gap: 5px 10px; /* 15px entre filas, 10px entre columnas */

}

.hero-webinar-contacto-option {
  display: contents; /* Muy importante: rompe el label en dos partes en el grid */
}

.hero-webinar-contacto-option input[type="radio"] {
  align-self: start;
  justify-self: center;
  cursor: pointer;
  margin-top: 2px;
}

.hero-webinar-contacto-option span {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.2;
  align-self: start;
}
  
.hero-webinar-label {
  font-size: 0.9rem;
  font-weight: bold;
  color: #555;
  
}


/* Estilos base: Desktop (>=1024px) ya deben verse bien con tu código actual */

/* Tablet (pantallas medianas entre 768px y 1023px) */
@media (max-width: 1023px) {
  .hero-webinar__content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .hero-webinar__info {
    text-align: center;
    max-width: 700px;
  }

  .hero-webinar__form-card {
    width: 100%;
    max-width: 500px;
  }

  .hero-webinar__meta span {
    display: block;
    margin-bottom: 5px;
  }
}

/* Móvil grande (pantallas de 480px a 767px) */
@media (max-width: 767px) {
  .hero-webinar__content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0rem;
  }

  .hero-webinar__title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-webinar__meta {
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-webinar__form-card {
    padding: 1.5rem;
  }

  .hero-webinar__form input {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .hero-webinar-options {
    grid-template-columns: 1fr; /* Los radio buttons de número de vehículos en 1 sola columna */
    gap: 10px;
  }

  .hero-webinar-contacto-options {
    grid-template-columns: auto 1fr; /* Mantener 2 columnas */
    gap: 10px;
  }

  .hero-webinar__button {
    width: 100%;
    font-size: 0.8rem;
    padding: 1rem;
  }

  .hero-webinar__privacy {
    font-size: 0.8rem;
    text-align: center;
  }
}

/* Móvil pequeño (<480px) */
@media (max-width: 479px) {
  .hero-webinar__title {
    font-size: 1.5rem;
  }

  .hero-webinar__meta {
    font-size: 0.8rem;
  }

  .hero-webinar__form-card {
    padding: 1rem;
  }

  .hero-webinar__form input {
    font-size: 0.9rem;
    padding: 0.7rem;
  }

  .hero-webinar-options,
  .hero-webinar-contacto-options {
    gap: 8px;
  }

  .hero-webinar__button {
    font-size: 1rem;
    padding: 0.8rem;
  }
}

.webinar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 140px;
  background-color: #f5f5f5;
  color: #000;
}



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px; 
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


