* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  list-style: none;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif

}

body {
  padding: 0;
  margin: 0;
  background-color: var(--blanco);
  overflow-x: hidden;

}

body.no-scroll {
  overflow: hidden;
}

html {
  overflow-x: hidden;

}

/*Variables de colores*/
:root {
  --dorado: #f1bc0d;
  --rojo: #D91E2E; 
  --blanco: #fff;
  --gris: #333;

  /* Neutros y de apoyo */
  --gris-claro: #f4f4f4;  /* Fondo de secciones o áreas con poco énfasis */
  --gris-medium: #7a7a7a; /* Texto secundario o menos importante */
  --gris-oscuro: #222;    /* Para textos con mucho contraste */
}
/*Variables de colores*/
/*MENU Y HAMBURGUESA*/

/* Reset y Variables */
:root {
  --primary-color: #4a6da7;
  --primary-dark: #3a5b8c;
  --secondary-color: #f8f9fa;
  --accent-color: #e74c3c;
  --text-color: #333;
  --bg-light: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.25s ease;
  --border-radius: 4px;
  --menu-height: 60px;
}

main {
  margin-top: var(--menu-height);
}

/* Base y Layout */
.header {
  background-color: var(--bg-light);
  box-shadow: var(--shadow);
  position: fixed;
  z-index: 1000000;
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: var(--menu-height);
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  height: 100%;
  text-decoration: none;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo span {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-color);
}

/* Menú Principal */
.nav-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  justify-content: flex-end;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.main-menu > li {
  position: relative;
  height: 100%;
}

.main-menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: none;
  white-space: nowrap;
  
}

.main-menu > li > a:hover {
  color: var(--text-color);
}

/* Dropdown Base */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  position: relative;
  cursor: pointer;
}

.dropdown-icon {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: currentColor transparent transparent transparent;
  transition: transform 0.3s ease; /* Add this line */
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-light);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: none;
  z-index: 1000;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  display: block;
}

/* Efecto hover para dropdown */
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
}


.dropdown:hover > .dropdown-toggle .dropdown-icon,
.dropdown:focus-within > .dropdown-toggle .dropdown-icon {
  transform: rotate(180deg);
}

/* Elementos del dropdown */
.dropdown-menu li {
  display: block;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  transition: none;
  white-space: nowrap;
}


.dropdown-menu a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
}

/* Dropdown anidado */
.dropdown .dropdown .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -0.5rem;
}

.dropdown .dropdown .dropdown-icon {
  transform: rotate(-90deg);
  margin-left: auto;
}

.dropdown .dropdown:hover > .dropdown-toggle .dropdown-icon,
.dropdown .dropdown:focus-within > .dropdown-toggle .dropdown-icon {
  transform: rotate(0);
}

/* Iconos sociales */
.social-icons {
  display: flex;
  margin-left: 1.5rem;
}

.social-icon {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0 0.5rem;
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--primary-color);
}

/* Toggle móvil */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  left: 3px;
  transition: var(--transition);
}

.mobile-toggle span:nth-child(1) {
  top: 6px;
}

.mobile-toggle span:nth-child(2) {
  top: 14px;
}

.mobile-toggle span:nth-child(3) {
  top: 22px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 14px;
}


/* Media Queries para Responsive notebook */

@media (max-width: 1024px){
.nav-container {
  padding: 0 0.5rem; /* Menos padding para 1024px */
}

.main-menu > li > a {
  padding: 0 0.5rem;
  font-size: 0.9rem;
}

.logo img {
  height: 35px;
}

.logo span {
  font-size: 0.9rem;
}

.dropdown-menu {
  min-width: 180px;
}

.dropdown-menu a {
  font-size: 0.85rem; /* Cambia este valor al tamaño deseado */
}



}

/* Media Queries para Responsive */
@media (max-width: 769px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-wrapper {
    position: fixed;
    top: var(--menu-height);
    left: -100%;
    width: 280px;
    height: calc(100vh - var(--menu-height)); /* Altura restante */
    background-color: var(--bg-light);
    box-shadow: var(--shadow);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1rem 0;
    overflow-y: auto;
  }
  
  .nav-wrapper.active {
    left: 0;
  }
  
  .main-menu {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  
  .main-menu > li {
    height: auto;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .main-menu > li > a {
    padding: 0.75rem 1.5rem;
    height: auto;
    justify-content: space-between;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: none;
    background-color: rgba(0, 0, 0, 0.02);
  }
  
  .dropdown-menu.show {
    visibility: visible;
    max-height: 1000px;
    padding: 0.5rem 0;
  }
  
  .dropdown-menu a {
    padding-left: 3rem;
        padding-top: 1.2rem;
  }
  
  .dropdown-menu .dropdown-menu a {
    padding-left: 3.5rem;
  }
  
  .dropdown-icon {
    transform: rotate(0);
    transition: transform 0.3s ease;
  }
  
  .dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
  }
  
  .social-icons {
    margin: 1rem 0 0 1.5rem;
  }
  
  .logo span {
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .logo span {
    font-size: 0.7rem;
  }
}

/* Overlay para versión móvil */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: none;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}





/* HERO */
.hero-section {
  position: relative;
  height: 70vh; /* Altura ajustada */
  width: 100%;
  overflow: hidden;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Filtro oscuro */
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
  animation: fadeIn 1.5s ease-out; /* Animación de aparición */
}

/* Animación de aparición */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-title {
  font-size: 4.4rem; /* Título más grande */
  margin: 0;
  padding-top: 2.5rem;
  font-weight: 700;
  color: #f9f9f9; /* Blanco suave */
}

.hero-title-span{
  color: #f1bc0d;
}
.hero-subtitle {
  font-size: 1.8rem; /* Un poco más grande */
  margin-bottom: 2.4rem;
  margin-top: 0.5rem;
  color: #e1e1e1; /* Gris claro */
}

.cta-button {
  padding: 1.2rem 2.4rem;
  background-color: #f1bc0d;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.3rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #cc9f0c; /* Verde más oscuro */
  transform: scale(1.1); /* Efecto de agrandamiento al pasar el cursor */
}

@media (max-width: 768px) {
  .hero-section {
    height: 85vh;
  }
  .hero-title {
    font-size: 3.5rem; /* Ajuste para móviles */
  }
  .hero-subtitle {
    font-size: 1.6rem; /* Ajuste para móviles */
  }
}

@media (max-width: 376px){
  .cta-button{
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
font-size: 1.5rem;
  }
}





/* HERO */
.hero-section {
  position: relative;
  height: 70vh; /* Altura ajustada */
  width: 100%;
  overflow: hidden;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Filtro oscuro */
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
  animation: fadeIn 1.5s ease-out; /* Animación de aparición */
}

/* Animación de aparición */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-title {
  font-size: 4.4rem; /* Título más grande */
  margin: 0;
  padding-top: 2.5rem;
  font-weight: 700;
  color: #f9f9f9; /* Blanco suave */
}

.hero-title-span{
  color: #f1bc0d;
}
.hero-subtitle {
  font-size: 1.8rem; /* Un poco más grande */
  margin-bottom: 2.4rem;
  margin-top: 0.5rem;
  color: #e1e1e1; /* Gris claro */
}

.cta-button {
  padding: 1.2rem 2.4rem;
  background-color: #f1bc0d;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.3rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #cc9f0c; /* Verde más oscuro */
  transform: scale(1.1); /* Efecto de agrandamiento al pasar el cursor */
}

@media (max-width: 768px) {
  .hero-section {
    height: 85vh;
  }
  .hero-title {
    font-size: 3.5rem; /* Ajuste para móviles */
  }
  .hero-subtitle {
    font-size: 1.6rem; /* Ajuste para móviles */
  }
}

@media (max-width: 376px){
  .cta-button{
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
font-size: 1.5rem;
  }
}

/*HERO*/

/*SECCION TARJETAS*/
/* Estilos para las tarjetas */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  color: #777;
}

/* Estilos para las tarjetas */

.card:hover {
  transform: translateY(-10px);
  /* Eleva la tarjeta al pasar el ratón */
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
    /* Una columna por fila */
    padding: 20px;
  }

  .intro h1 {
    font-size: 2rem;
    /* Ajustar tamaño de texto para móviles */
  }

  .intro p {
    font-size: 1rem;
  }
}

/* Media query para dispositivos móviles */
/*SECCION TARJETAS*/



/*SECCION SPONSORS*/

/* Estilos para la sección de sponsors */
.sponsors-section {
  padding: 4rem 2rem;
  background-color: #1a1a1a;
  position: relative;
  background-image: url('../assets/images/banners/sponsors.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.sponsors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.6);
}

.sponsors-content {
  position: relative;
  max-width: 1000px; /* Reducido de 1200px */
  margin: 0 auto;
  text-align: center;
  color: white;
}

.sponsors-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem; /* Reducido de 1.5rem */
  color: white;
}

.sponsors-description {
  font-size: 1.1rem; /* Reducido de 1.2rem */
  line-height: 1.6;
  margin-bottom: 2rem; /* Reducido de 3rem */
  max-width: 600px; /* Reducido de 800px */
  margin-left: auto;
  margin-right: auto;
}

.sponsors-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem; /* Reducido de 1.5rem */
  margin-bottom: 2rem; /* Reducido de 3rem */
}

.benefit-item {
  padding: 1.5rem; /* Reducido de 2rem */
  background-color: rgba(36, 36, 36, 0.9);
  border-radius: 10px;
  transition: transform 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(5px);
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2rem; /* Reducido de 2.5rem */
  color: #4CAF50;
  margin-bottom: 1rem; /* Reducido de 1.5rem */
}

.benefit-item h3 {
  font-size: 1.1rem; /* Reducido de 1.25rem */
  margin-bottom: 0.75rem; /* Reducido de 1rem */
  color: #4CAF50;
}

.benefit-item p {
  color: #e0e0e0;
  line-height: 1.4;
  font-size: 0.95rem;
}

.sponsor-button {
  display: inline-block;
  padding: 0.875rem 1.75rem; /* Reducido de 1rem 2rem */
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #4CAF50;
  font-size: 1rem; /* Reducido de 1.1rem */
}

.sponsor-button:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

/* Media query para tablets */
@media (min-width: 768px) {
  .sponsors-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Media query para escritorio */
@media (min-width: 1024px) {
  .sponsors-section {
    padding: 3rem 2rem; /* Reducido de 4rem 2rem */
  }

  .sponsors-benefits {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .benefit-item {
    height: 100%;
    justify-content: flex-start;
  }
}

/*SECCION SPONSORS*/



/*SECCION LOGOS CARRUSEL*/
/* SECCIÓN LOGOS CARRUSEL */
/* Estilos para el título */
.carousel-title {
  height: auto;
  margin-top: 15px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #333;
}

/* Contenedor principal del carrusel */
.carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
  background: white;
  position: relative;
}

/* Pista de logos con scroll continuo */
.logo-track {
  display: flex;
  width: max-content; /* Permite el desbordamiento correcto */
  gap: 40px;
  animation: scroll 90s linear infinite;
}

/* Slide individual */
.logo-slide {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Animación del carrusel */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Gradientes para efecto de desvanecimiento */
.carousel-container::before,
.carousel-container::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/*SECCION LOGOS CARRUSEL*/

/*SECCION BANNER*/
.purpose-section {
  width: 100%;
  background-color: #1a1919;
  /* Fondo claro para resaltar el contenedor */
  padding: 40px 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.purpose-text {
  text-align: center;
  width: 75%;
  /* Ajusta el ancho según sea necesario */
}

.purpose-text p {
  font-size: 2rem;
  color: #ededed;
  line-height: 1.5;
}

.logo {
  width: 11rem;
  /* Ajusta el tamaño de los logos */
  border-radius: 50%;
  height: auto;
  margin: 0 20px;
  /* Espaciado entre el texto y los logos */
}

/* Estilo de contenedor para dispositivos pequeños */
@media (max-width: 768px) {
.purpose-section{
  max-height: 600px;
}

  .logos {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    width: 7rem;
    margin: 10px 0;
    /* Ajusta el margen para la vista móvil */
  }

  .purpose-text {
    width: 100%;
    /* El texto ocupa todo el ancho en móviles */
  }

  .purpose-text p{
    font-size: 1.3rem;
  }

  .logo {
    width: 11rem;
  }
}

/* Estilo de contenedor para dispositivos pequeños */
/*SECCION BANNER*/


/*SECCION DATOS*/
/* SECCION DATOS */
.info-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 50px 0;
  padding: 40px 20px;
  gap: 30px; /* Agregamos un espacio entre los elementos */
  flex-wrap: wrap; /* Permitimos que los elementos se ajusten en múltiples filas */
}

.info-item {
  text-align: center;
  transition: transform 0.3s ease-in-out;
  flex: 1 1 250px; /* Permite que los items se ajusten bien a diferentes tamaños */
  max-width: 300px; /* Limita el tamaño máximo de cada item */
  margin: 10px;
}

.info-item:hover {
  transform: scale(1.05);
}

.info-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--dorado);
  margin-bottom: 10px;
  display: inline-block;
  transition: color 0.3s ease;
}

.plus-sign {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--gris);
  margin-right: 5px;
  display: inline-block;
  transition: color 0.3s ease;
}

.info-label {
  font-size: 1.8rem;
  color: var(--gris);
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.info-item:hover .info-number {
  color: #f1bc0d; /* Cambia el color al pasar el ratón */
}

.info-item:hover .plus-sign {
  color: #f1bc0d; /* Cambia el color del signo "+" */
}

.info-item:hover .info-label {
  opacity: 1; /* Resalta el texto al pasar el ratón */
}

/* Media Queries - Version Móvil */
@media (max-width: 768px) {
  .info-container {
    padding: 20px 10px;
    flex-direction: column; /* Los items se apilan verticalmente en pantallas pequeñas */
    align-items: center; /* Centramos los items en pantallas pequeñas */
  }

  .info-item {
    flex: 1 1 90%; /* Los items ocupan el 90% del ancho en pantallas pequeñas */
    max-width: 100%; /* Los items ocupan el 100% en móviles */
    margin-bottom: 20px; /* Espaciado entre los items */
  }

  .info-number {
    font-size: 2.5rem; /* Reducimos el tamaño de los números */
  }

  .plus-sign {
    font-size: 2rem; /* Reducimos el tamaño del signo "+" */
  }

  .info-label {
    font-size: 1.5rem; /* Reducimos el tamaño de la etiqueta */
  }
}


.info-item:hover .info-number {
  color: #f1bc0d; /* Cambia el color al pasar el ratón */
}

.info-item:hover .plus-sign {
  color: #f1bc0d; /* Cambia el color del signo "+" */
}

.info-item:hover .info-label {
  opacity: 1; /* Resalta el texto al pasar el ratón */
}



/*SECCION DATOS*/


/*SECCION ICONO FLOTANTE DE WHATTSAPP*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* Color de WhatsApp */
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
}

.whatsapp-float i {
  margin-top: 16px; /* Centrar el icono verticalmente */
}
/*SECCION ICONO FLOTANTE DE WHATTSAPP*/



/* FOOTER */
footer {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #2d2e33;
  padding-top: 60px;
  padding-bottom: 40px;
  gap: 0rem;
}

.footer-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  min-width: 200px;
}

.footer-logo img {
  width: 170px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-col {
  flex: 1;
  min-width: 200px;
  padding: 0 15px;
}

.footer-col h4 {
  position: relative;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 22px;
  color: #f1bc0d;
  text-transform: capitalize;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  background-color: white;
  height: 2px;
  width: 40px;
  transition: width 0.3s ease;
}

.footer-col:hover h4::before {
  width: 60px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  margin-bottom: 12px;
}

ul li a {
  display: block;
  font-size: 17px;
  text-transform: capitalize;
  color: #bdb6b6;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

ul li a:hover {
  color: white;
}

.links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  color: white;
  background-color: rgba(40, 130, 214, 0.8);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.links a:hover {
  color: #4d4f55;
  background-color: white;
  transform: translateY(-3px);
}

/* Media Queries */
@media (max-width: 1024px) {
  footer {
    padding: 40px 4%;
  }

  .footer-logo {
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer-col {
    width: calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  .footer-col {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-col h4::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 30px 20px;
  }

  .footer-logo img {
    width: 140px;
  }

  .footer-col h4 {
    font-size: 20px;
  }

  ul li a {
    font-size: 16px;
  }
}

/*DEVELOPERS TEXT*/
.developers-text{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.developers-text p{
  font-size: 22px;
  color: #bdb6b6;

}

@media (max-width: 640px){

  developers-text{
    text-align: center;
    justify-content: center;
  }

}
  


/*DEVELOPERS TEXT*/

/* FOOTER */