html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Esto bloquea el scroll horizontal */
}

 
h1, h2, h3, h4, p {
    font-family: "Roboto", sans-serif;
    text-decoration: none;
  }

.penelope {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.hamb {
  cursor: pointer;
  margin: auto;
  background: none;
  border: none;
}

.cierre {
  cursor: pointer;
  margin: auto;
  background: none;
  border: none;
}

.search {
  cursor: pointer;
  margin: auto;
  background: none;
  border: none;
}

.search .siri{
  width: 2em;
  height: 2em;
  fill: white;
}

.hamb .svgi {
  width: 3em;
  height: 3em;
  fill: white;
}

.cierre .babaduc {
  width: 3em;
  height: 3em;
  fill: white;
}

.navina .uli {
  background-color: #fff;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
}

.penelope .uli {
  flex-direction: column;
}

.penelope .lin {
  margin: 1rem 0;
}

/* Contenedor de la navegación (oculto inicialmente con altura 0) */
.penelope .navina {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
  background: #fff;
  pointer-events: none;
}

/* Al activar, se define la altura deseada (50vh en este caso) */
.penelope .navina.activo {
  height: 66vh;
  transform: translateY(2%);
  pointer-events: auto;
}

/* La lista se muestra en dos columnas con grid */
.penelope .navina .uli {
  list-style: none;     /* Quita los puntos */
  margin: 0;
  padding: 1rem;        /* Un poco de padding para separar el contenido de los bordes */
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
  gap: 1rem;                   /* Espacio entre columnas y filas */
}

/* Cada ítem de la lista tendrá la misma altura */
.penelope .navina .lin {
  background: transparent;   /* O un color si lo deseas */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;             /* Se adapta a la altura asignada por el grid */
}

/* Estilo para los enlaces: sin subrayados y con fuente grande */
.penelope .navina .arnold {
  text-decoration: none;  /* Quitar subrayado */
  color: #333;            /* Color base */
  font-size: 1.5rem;      /* Tamaño de fuente (aprox. 24px) */
  width: 100%;
  text-align: center;
  padding: 0.5rem 0;
}


/* Menú en dos columnas, alineado */
.penelope .navina .uli {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

/* Estilo base de cada item */
.penelope .navina .uli .lin {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Estilo del enlace (quita subrayado, color neutro) */
.penelope .navina .uli .lin .arnold {
  text-decoration: none;
  color: #333;
  width: 100%;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

/* Hover: cambia fondo y texto como Codelco */
.penelope .navina .uli .lin:hover {
  background-color: #68ec84;
}

.penelope .navina .uli .lin:hover .arnold {
  color: white;
}

#activos.penelope .navina .uli .lin:hover .arnold {
  color: white;
}

#activin {
  background-color: #68ec84;
}

#activin .arnold {
  color: white;
}

#activin .altern {
  color: #000;
}

#contactos a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-weight: normal;
  border: 2px solid rgba(253, 212, 21, 0.4);
  border-radius: 6px;
  position: relative;
  animation: glow-border 2.5s linear infinite;
  box-shadow: 0 0 8px rgba(253, 212, 21, 0.3);
}

@keyframes glow-border {
  0% {
    border-color: rgba(253, 212, 21, 0.4);
    box-shadow: 0 0 5px rgba(253, 212, 21, 0.3);
  }
  50% {
    border-color: rgba(253, 212, 21, 0.85);
    box-shadow: 0 0 15px rgba(253, 212, 21, 0.65);
  }
  100% {
    border-color: rgba(253, 212, 21, 0.4);
    box-shadow: 0 0 5px rgba(253, 212, 21, 0.3);
  }
}


.iconus {
 margin-left: 10%;
 margin-top: 1%;
}
.uli ul {
  text-decoration: none;
 }

.vergo {
  position: absolute;
  bottom: 20vh;
  right: 40vw;
  padding-left: 5vw;
  font-size: clamp(12px, 4vw + 1rem, 60px);
  color: white;
  font-weight: 900;
  opacity: 1;
  filter: brightness(200%) contrast(200%);
  z-index: 9999;
}

@keyframes blink {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.video-container {
  position: fixed; /* O fixed si quieres que quede fijo en la pantalla */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Ajusta la altura según necesites */
  overflow: hidden;
  z-index: -1; /* Hace que el video esté detrás del menú */
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Asegura que el video cubra el área sin distorsionarse */
  position: absolute;
  
}

.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Capa de opacidad */
}


.header-bottom-part-content {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 67px;
}


.menu-toggle {
  font-size: 24px;
  color: #68ec84;
  border: none;
  background: none;
  cursor: pointer;
}
.menu-container {
  position: absolute;
  top: 0;
  right: -100%;
  width: 300px;
  height: 75vh;
  background: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  padding: 20px;
  overflow-y: auto;
}
.menu-container.active {
  right: 0;
}
.menu-close {
  font-size: 24px;
  color: #68ec84;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  margin-left: auto;
}
.menu-container ul {
  list-style: none;
  padding: 0;
  z-index: 9999;
}
.menu-container ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.menu-container ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  display: block;
}

.searching {
  display: none;
}

.searching.argal {
  display: block;
}

.search.thragg {
  display: none;
}

.campo-busqueda {
  padding: 8px 12px;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: box-shadow 0.3s ease, border 0.3s ease;
  outline: none;
}

.campo-busqueda:focus {
  border: 2px solid #68ec84;
  box-shadow: 0 0 8px #68ec84;
}

.fifo {
background-color: white;
padding: 50px 0 30px;
}
 

@media (min-width: 768px) and (max-width: 1199px) {

  .vergo {
    font-size: 35px;
    bottom: 25%;
    left: 5%;
    z-index: 9999;
  }

  .penelope {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem; /* puedes ajustar el espacio entre los elementos */
  }

  .penelope > .container.logo,
  .penelope > .buscarlo,
  .penelope > .hamb {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container.logo,
  .buscarlo,
  .hamb {
    width: auto !important;
  }

  .opaco h2 {
    text-align: center;
    color: white;
    font-size: 50px !important;
    padding-top: 8vh !important;
  }

}


@media (max-width: 767px) {

  .header-bottom-part-content {
    justify-content: center;
    align-items: center;
  }

  .hamb .svgi {
    fill: #68ec84;
  }

  .cierrin .babaduc {
    fill: #68ec84;
  }


  /* Oculta el menú por defecto */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    background-color: white;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
  }

  /* Muestra el menú al hacer clic en el botón */
  #navbar.show {
    margin-bottom: 10%;
    transform: translateY(21%);
    opacity: 1;
    pointer-events: auto;
  }

  .logo-img {
    display: block;
    margin-left: 8vw;
    height: 8vh !important;
    width: 12vw !important;
    padding-bottom: 1.5vh;
  }

  /* Estilos del botón hamburguesa */
  .hamb {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    left: 26vw;
    z-index: 100000;
    padding-bottom: 1.5vh !important;
  }

  .cierrin {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 51vw;
    z-index: 100001;
    padding-bottom: 1.5vh !important;
  }


  /* Lista vertical del menú */
  #navbar ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2 rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #navbar .lin {
    width: 95%;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.4rem;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .navina a {
    padding: 2px 0 !important;
  }

  .search-input {
    flex-grow: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid black;
    border-radius: 16px;
    font-size: 1.4rem;
    outline: none;
    margin-bottom: 12%;
    position: absolute;
    width: 46vw !important;
  }
  
  .search-button {
    padding: 0.5rem;
    background-color: #68ec84;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    color: white;
    height: 40px;
    width: 40px;
    margin-bottom: 6.8vh !important;
    margin-left: 49vw !important;
    position: relative;
  }

  .search-input:focus {
    border: 2px solid #68ec84;
    box-shadow: 0 0 8px #68ec84;
  }
 
  .search-icon {
    margin-bottom: 60%;
  }

  .uli {
    margin-top: 0; /* asegúrate que no tenga margen */
  }

  .uli .lin:first-child {
    margin-top: 0.3rem; /* o menos si quieres más cerca del top */
  }

  .uli .lin {
    padding: 0.8vh 0 !important;
  }

  #navbar .lin:hover {
    background-color: #68ec84;
  }

  .search-button:hover {
    background-color: rgba(253, 212, 21, 0.85);
  }

  #navbar .lin:hover .arnold {
    color: white;
  }

  .arnold {
    color: #333;
    text-decoration: none;
    font-size: 1rem; 
  }

  .vergo {
    font-size: 22px;
    bottom: 10%;
    left: 5%;
    z-index: 9;
  }

  /* Opcional: ajusta el contenedor del video si es necesario */
  .video-containerete {
    position: relative;
    z-index: 1;
  }

  .search-icon {
    transition: transform 0.3s ease;
  }
  
  .search-icon.animate {
    animation: expandContract 0.4s ease forwards;
  }
  
  @keyframes expandContract {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
  
  video.match {
    display: block !important;
    margin: 1rem auto 0 auto !important;  /* margen superior opcional y auto a los lados */
    max-width: 100%;      /* que nunca desborde la columna */
    height: auto;         /* para mantener proporción */
    padding-top: 2vh !important;
  }

  .opaco h2 {
    text-align: center;
    color: white;
    font-size: 35px !important;
  }

  .cuma {
    
    text-align: center !important;
    align-items: center !important;
  }

    /* Asegura que .mobile-social esté siempre visible */
    .mobile-social {
      display: flex !important;
    }
    /* Los ítems sólo icono, tamaño fijo */
    .mobile-social .social-item {
      width: 25vw !important;
      height: 5.5vh !important;
      background: none !important;
      padding: 2vh 2vw !important;
      margin: 0px 4px !important;
      transition: color 0.3s ease !important;
    }
    /* Oculta el texto dentro de <span> */
    .mobile-social .social-item span {
      display: none !important;
    }
    /* Sólo cambia el color del icono al hover */
    .mobile-social .social-item:hover {
      color: #68ec84 !important;
    }

  .social-item.phone  { background-color: #ef5350 !important; }
  .social-item.wsp    { background-color: #25D366 !important; }
  .social-item.in     { background-color: #0077B5 !important; }
  .social-item.email  { background-color: #4DB6AC !important; }
  

}


  .logo-img {
    display: block;
    width: 100px;
  }

  /* Asegúrate de que no haya desbordamientos generales */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* IMPIDE EL DESPLAZAMIENTO HORIZONTAL */
}
/* Contenedor que ocupa toda la pantalla */
.video-containerete {
  position: relative;
  width: 100vw;  /* Fuerza a ocupar el 100% del ancho de la pantalla */
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.video-containerete video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover; /* Rellena sin distorsionar ni dejar márgenes */
  margin: 0;
  padding: 0;
}

.video-containerete::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Cambia el 0.4 por más o menos opacidad */
  z-index: 1;
}

/* 1) Wrapper: fija altura a 75vh y relativa */
.wrapper {
  position: relative;
  height: 100vh;       /* 3/4 de la pantalla */
  overflow: hidden;    /* Oculta lo que sobresalga */
}

/* 2) Video absoluto dentro del wrapper */
.video-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;        /* Detrás del contenido de .penelope */
}

.video-container video {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* 3) .fifo como bloque independiente debajo */
.container.fifo {
  background: #fff;
  margin-top: 0;      /* Ya está separado por la altura 75vh */
}

.rosa a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.rosa a:hover {
  color: #68ec84;
}
      
/* 1. Asegúrate de que sea un bloque centrable */
video.match {
  display: block !important;
  margin: 1rem auto 0 auto !important;  /* margen superior opcional y auto a los lados */
  max-width: 100%;      /* que nunca desborde la columna */
  height: auto;         /* para mantener proporción */
  padding-top: 10vh;
}

.box {
  background-image: url(../IMAGENES/ESTRUCTURAIGNEA.jpeg);
  width: 100vw;
  height: 22vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 70%;
  background-attachment: fixed;

}

.opaco {
  height: 100%;
  width: 100%;
  background-color: #000a;
}

.opaco h2 {
  text-align: center;
  color: white;
  font-size: 65px;
  padding-top: 6.5vh;
}

.box1 {
  background-image: url(../IMAGENES/CERROMACRO2.jpeg);
  width: 100vw;
  height: 22vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 70%;
  background-attachment: fixed;

}

.box2 {
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.3) 100%
    ),
    url(../IMAGENES/cuantia.jpeg) center/cover fixed;
  width: 100vw;
  height: 80vh;
  background-repeat: no-repeat;
}

.box3 {
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.3) 100%
    ),
    url(../IMAGENES/CORTETRANSPARENTE.jpeg) center/cover fixed;
  width: 100vw;
  height: 80vh;
  background-repeat: no-repeat;
}

.box4 {
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.3) 100%
    ),
    url(../IMAGENES/CERROMACRO2.jpeg) center/cover fixed;
  width: 100vw;
  height: 80vh;
  background-repeat: no-repeat;
}

.btn-outline {
  overflow: hidden;
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 20px;
  color: white !important;
  font-weight: bold;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  background: linear-gradient(174deg, rgb(41, 185, 22) 3%, rgb(20, 252, 40) 49%, rgb(23, 243, 3) 51%, rgb(83, 230, 25) 78%);
}

.btn-outline:hover:after {
  position: absolute;
  content: "";
  background-color: #fff;
  color: white !important;
  opacity: 0.5;
  width: 8px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
  animation-name: bgmove;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

@keyframes bgmove {
  0% {
      left: -10px;
  }
  100% {
      left: 105px;
  }
}

/* 1) Header “fixed” y transparente al inicio */
.penelope,
header.veintitres {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000 !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.veintitres {
  position: fixed;
  background-color: #fff !important;
  height: 10vh !important;
}

/* 2) Cuando scrollees, fondo blanco y sombra */
.penelope.scrolled {
  background: #fff !important;
}
.penelope.scrolled .buscarlo .hamb .cierre {
  fill: #68ec84 !important;
}

/* ======= CSS para las redes sociales fijas ======= */

/* Desktop: barra vertical a la derecha */
.fixed-social {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
}

/* Móvil: barra horizontal inferior */
.mobile-social {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  padding: 8px 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

/* Ítem de red social: icono y texto oculto */
.social-item {
  position: relative;
  overflow: hidden;
  height: 40px;
  width: 40px;
  margin: 5px 0;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-term {
  position: relative;
  overflow: hidden;
  height: 40px;
  width: 40px;
  margin: 5px 0;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  transition: width 0.3s ease;
  display: block;
  align-items: flex-end;
  justify-content: center;
}

/* Expansión al hacer hover */
.social-item:hover {
  width: 155px;
}

.social-term:hover {
  width: 155px;
}

/* Icono y texto */
.social-item span {
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.social-item:hover span {
  opacity: 1;
}

.social-term span {
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-left: 8px;
}
.social-term:hover span {
  opacity: 1;
}

.social-term svg {
  flex-shrink: 0;
}

/* Colores por tipo */
.social-item.phone  { background-color: #ef5350; }
.social-item.wsp    { background-color: #25D366; }
.social-item.in     { background-color: #0077B5; }
.social-item.email  { background-color: #4DB6AC; }

.social-term.phone  { background-color: #ef5350; }
.social-term.wsp    { background-color: #25D366; }
.social-term.in     { background-color: #0077B5; }
.social-term.email  { background-color: #4DB6AC; }

/* Móvil: ítems solo icono, color gris base */
.mobile-social .social-item {
  width: auto;
  height: auto;
  background: none;
  color: #333;
  font-size: 24px;
  padding: 0 12px;
  margin: 0;
  transition: color 0.3s ease;
}

.greenish {
  background-color: #68ec84;
}

footer.greenish a {
  color: #000a !important;  /* Asegura que el color base sea oscuro */
  text-decoration: none !important; /* Evita subrayado */
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer.greenish a:hover {
  color: #fff !important; /* Cambia a un morado más intenso */
  text-decoration: underline !important; /* Subraya en hover */
}

.wala a {
  text-decoration: none !important; /* Subraya en hover */
}

.telefonin {
  fill: white !important;
}

.do a {
  color: #333;
  margin-left: 2.3vw;
}

.escleral{
  width: 100%;
  background-color: transparent;
  padding: 1rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.escleral .alibaba {
  width: 10vw;
  height: 13vh;
}

.escleral .baton {
  background-color: whitesmoke;
  display: none;
}

.escleral .tarea {
  width: 2vw;
  height: 2vh;
}

.escleral .unlimited {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

.escleral .altern {
  margin: 0 .5em;
  text-decoration: none;
  color: #fff;
}

/* Estado inicial transparente */
.escleral {
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

/* Cuando ya hubo algo de scroll */
.escleral.scrolled {
  background-color: #68ec84 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* También cambia el fill de TODOS los SVG dentro */
.escleral.scrolled svg {
  fill: #68ec84 !important;
}


@media (max-width: 767px) {

  .escleral .navigation {
    display: none;
    width: 100%;
    cursor: pointer;
    height: 0;
    pointer-events: none;
    overflow: hidden;
    transition: all .6s ease;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
  }

  .escleral .navigation.activation {
    display: block;
    height: 34vh;
    pointer-events: auto;
    background-color: #fff;
  }

  .escleral .baton {
    display: block;
    height: 5vh;
    width: 8vw;
    margin-left: 26vw;
  }

  .baton .tarea {
    fill: #000;
  }

  .escleral .unlimited {
    flex-direction: column;
  }

  .escleral .altern {
    margin: 1rem 0;
    color: #000;
  }

  .escleral .alibaba {
    width: 17vw;
    height: 12vh;
  }

  .escleral .barbi {
    width: 60vw; /* Ajustado para ocupar el espacio restante */
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1vw;
  }

  .barbi input {
    width: 100%;
    height: 100%;
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .escleral {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .escleral .fraccion {
    height: 13vh;
    flex: 0 0 auto;
  }

  .escleral .navigation {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
  }

  .escleral .unlimited {
    display: grid;
    grid-template-rows: repeat(3, 13vh);
    grid-auto-flow: column;
    align-content: start;
    justify-content: flex-end;
    width: 100%;
  }

  .escleral .altern {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 13vh;
    padding: 0 1rem;
    box-sizing: border-box;
    white-space: nowrap;
    text-align: center;
  }

  .escleral .barbi {
    height: 13vh;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .barbi input {
    width: 100%;
    height: 2.5rem;
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
  }

    /* Fuerza que #contactos se comporte igual que los otros enlaces */
    .escleral .unlimited li#contactos {
      /* cada <li> ya tiene height:13vh por el grid, solo aseguramos alineación */
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .escleral .unlimited li#contactos a.altern {
      /* quitamos inline-block para evitar quiebre de línea */
      display: flex;
      align-items: center;
      justify-content: center;
  
      /* igual altura que sus hermanos */
      height: 13vh; 
      box-sizing: border-box;
  
      /* conservamos tu glow, pero centrado */
      padding: 0 1rem;
      border-width: 2px;
      border-style: solid;
      border-color: rgba(253, 212, 21, 0.4);
      border-radius: 6px;
      animation: glow-border 2.5s linear infinite;
      box-shadow: 0 0 8px rgba(253, 212, 21, 0.3);
    }
  
}

.navigation a:hover {
  color: yellowgreen !important; /* Cambia a un morado más intenso */
  text-decoration: underline !important; /* Subraya en hover */
}

.escleral .barbi {
  display: flex;
  align-items: center;
  margin: 0 0 0 5vw;
  flex: 1; /* Para ocupar espacio intermedio entre logo y navegación */
}

.barbi input {
  padding: 0.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  width: 13vw;
}

.barbi button {
  padding: 0.5rem;
  background-color: #68ec84;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1vw;
}

.barbi .atari {
  fill: white;
}

.karlo:hover {
  background-color: rgba(253, 212, 21, 0.85);
}



