/* Pagina */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-padding-top: 104px; /* ajusta este valor al alto de tu header */
  scroll-behavior: smooth;   /* opcional: animación suave */
}

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.centrartexto {
  text-align: center;
  margin: 0px;
}

.no_marg {
  margin-left: 0;
  margin-right: 0;
}

.no_padd {
  padding-left: 0;
  padding-right: 0;
}


.boton-general {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #003366;
  border: 3px solid #00B5E2;
  padding: 15px 10px;
  border-radius: 30px;
  background-color: white;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.boton-general:hover {
  background-color: #00B5E2;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.margin-bottom {
  margin-bottom: 10%;
}

/* Heder */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 20px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  /* Ya lo tienes */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  /* ← Borde sutil */

}

.logo img {
  height: 75px;
  padding-left: 15%;
  margin-top: 5%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 10%;
  /* espacio desde el borde derecho */

}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-right: 20px;
  /* un poco más de espacio a la derecha */
}

.nav-links li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition: color 0.3s;
}



.language-selector {
  padding: 5px;
  border-radius: 5px;
  border: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
}



/* Estado inicial - transparente */
.header.transparent {
  background-color: white;
  color: black;
}

/* .header.transparent {
    background-color: #a29e9e75;
    color: white;
} */

/* Estado scrolleado - fondo blanco */
.header.scrolled {
  background-color: white;
  color: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Actualiza enlaces y select */
.header.scrolled .nav-links li a,
.header.scrolled .language-selector {
  color: #00a1d4;
  font-size: 22px;
}

.header.transparent .nav-links li a,
.header.transparent .language-selector {
       color: #023A75;;
  font-size: 22px;
}

.header.transparent .nav-links li a:hover 
 {
   
    color: #003366;
    border-bottom: 3px solid #00B5E2;
    transition: all 0.3s ease;
   

}

.header.scrolled .nav-links li a:hover
{
  
    color: #003366;
    border-bottom: 3px solid #00B5E2;
    transition: all 0.3s ease;
    
}
/* Asegúrate de que los textos cambien color al hacer scroll */
.nav-links li a {
  transition: color 0.3s ease;
}

.language-selector {
  transition: color 0.3s ease;
}

.nav-links li a,
.language-selector {
  transition: color 0.4s ease, background-color 0.4s ease;
}

.logo img {
  transition: all 0.4s ease;
}

/* BanerCarrusel */
#carrusel {
  margin-bottom: 5%;
}

.banner-carrusel {
  position: relative;
  width: 100%;
  height: 800px;
  /* overflow: hidden; */

}

.banner-carrusel {
  margin-top: 65px;
  /* o el alto de tu header */
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  background-color: #000;
  /* opcional: fondo si la imagen no llena el espacio */
}

.slide p {
  font-size: 3rem;
}

.banner-carrusel .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.662), rgba(0, 0, 0, 0.174)); */
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Texto sobre el banner */
.banner-text {
  position: absolute;
  left: 10%;
  top: 30%;
  transform: translateY(-50%);
  color: white;
  font-size: 10rem;
  font-weight: bold;
  /* background: rgba(0, 0, 0, 0.4); */
  padding: 10px 20px;
  border-radius: 10px;
  max-width: 80%;
  z-index: 2;
  /* Asegura que el texto esté sobre el sombreado */

}

.banner-btn {
  display: inline-block;
  margin-top: 15%;
  padding: 12px 50px;
  font-size: 3rem;
  color: #18bee1;
  border: 2px solid white;
  background-color: white;
  border-radius: 35px;
  text-decoration: none;
  transition: background-color 0.4s, color 0.4s;
}

.banner-btn:hover {
  background-color: white;
  color: #000;
}

/* Botones de control */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 40px;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 50%;
  color: #023a78;
  z-index: 2;
  transition: color 0.4s ease, background-color 0.4s ease;
}

.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid;

}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Indicadores */
.indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.indicators button.active {
  background-color: #00a1d4;
}


@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }

  60% {
    opacity: 1;
    transform: translateY(30px);
  }

  80% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.zoomIn {
  animation-name: zoomIn;
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}


@keyframes imgFadeIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes imgSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes imgZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.img-animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.imgFadeIn {
  animation-name: imgFadeIn;
}

.imgSlideLeft {
  animation-name: imgSlideLeft;
}

.imgZoomIn {
  animation-name: imgZoomIn;
}

.img-animated {
  animation-duration: 1.5s;
  /* ← más lento */
  animation-fill-mode: both;
}

.animated {
  animation-duration: 1.5s;
  /* ← también más lento para textos */
  animation-fill-mode: both;
}
.banner-text-right {
  left: auto;
  right: 10%;
  text-align: right;
}

.lainheat {

    top: 20%;

    line-height: normal;
}








/* Nosotros */
#nosotros {
  padding-left: 5%;
  padding-right: 5%;
  
  background:url('../img/FigurasFondo3.svg') ;
}

.fotonosotros {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}

#nosotros h1 {
  font-size: 5rem;
  color: #023a78;
}

#nosotros p {
  font-size: 20px;
}

.imagen-con-borde {
  position: relative;
  display: inline-block;
  padding: 10px;
  background: #00a1d4;
  /* Borde azul base */
  border-radius: 15px;
  overflow: hidden;
}

/* Pseudo-elemento para el efecto de luz girando */
.imagen-con-borde::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: conic-gradient(from 0deg,
      #00a1d4 0deg,
      white 90deg,
      #00a1d4 180deg,
      white 270deg,
      #00a1d4 360deg);
  animation: girarSuave 6s linear infinite;
  z-index: 0;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 15px;
}

/* Imagen principal encima */
.imagen-con-borde img.fotonosotros {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}


/* Logotipo en la esquina */
.logo-esquina {
  position: absolute;
  bottom: -1px;
  right: 10px;
  width: 175px;
  z-index: 2;
  padding: 5px;
}

/* Animación de "borde girando" */
@keyframes luzGirando {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes girarSuave {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
 



/* Procesos */
#procesos {
  margin-bottom: 5%;
}

.contenedor-circulos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* gap: 40px; */
  padding: 40px;
  /* overflow-x: auto; */
}

.circulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
}

.texto {
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  margin: 10px 0;
}

.contenido {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  /* background-color: white; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
  border-style: solid;
  border-width: 0px;
}

/* Borde azul abajo + lados (NO arriba) */
.borde-inferior .contenido {
  border-bottom: 8px solid #00a1d4;
  border-left: 1px solid #00a1d4;
  border-right: 1px solid #00a1d4;
  border-top: none;
}

/* Borde azul arriba + lados (NO abajo) */
.borde-superior .contenido {
  border-top: 8px solid #023a78;
  border-left: 1px solid #023a78;
  border-right: 1px solid #023a78;
  border-bottom: none;
}

/* Imagen central */
.contenido img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.contenedor-circulos p {
  color: #023a78;
  font-size: 1.4rem;
}

#procesos h1 {
  font-size: 6rem;
  color: #023a78;
}

.boton-general-proceso {
  padding: 10px 20px;
}



#procesos2 {
  margin-bottom: 10%;
  /*background:url('../img/Figurasfondo.svg') ;*/
}

.contenedor-circulos2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* gap: 40px; */
  padding: 40px;
  /* overflow-x: auto; */
}

.circulo2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
}

.texto2 {
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  margin: 10px 0;
}

.contenido2 {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  /* background-color: white; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
  border-style: solid;
  border-width: 0px;
}

/* Borde azul abajo + lados (NO arriba) */
.borde-inferior2 .contenido2 {

}

/* Borde azul arriba + lados (NO abajo) */
.borde-superior2 .contenido2 {

}

/* Imagen central */
.contenido2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  
  position: relative;
}

.contenedor-circulos2 p {
  color: #023a78;
  font-size: 1.4rem;
}

#procesos2 h1 {
  font-size: 6rem;
  color: #023a78;
}

.boton-general-proceso2 {
  padding: 10px 20px;
}

.imgproc2{
  top: 10px;
  left: -9px;
}

.imgproc3{
  top: 0px;
  left: -17px;
}

.imgproc4{
  top: 10px;
  left: -25px;
}

.imgproc5{
  top: 0px;
  left: -33px;
}
.imgproc6{
  top: 10px;
  left: -41px;
}
.imgproc7{
  top: 0px;
  left: -49px;
}
.imgproc8{
  top: 10px;
  left: -57px;
}
.imgproc9{
  top: 0px;
  left: -65px;
}
.imgproc10{
  top: 10px;
  left: -73px;
}

@media (max-width: 1024px) {
  .contenedor-circulos2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding: 20px 0;
  }
    .contenedor-circulos2::-webkit-scrollbar {
    display: none;
  }
}


@media (max-width: 768px) {
  .contenedor-circulos2 {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    gap: 0; /* Para mantener los elementos pegados */
  }

  .circulo2 {
    flex: 0 0 auto; /* No permite que se reduzca el tamaño ni se expanda */
    margin-right: 20px; /* Espaciado entre círculos (ajusta según lo necesites) */
  }

  .contenido2 {
    width: 120px;
    height: 120px;
  }

  .contenido2 img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .contenedor-circulos2 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
  padding: 20px 0;
  gap: 0;
}

.contenedor-circulos2::-webkit-scrollbar {
  display: none;
}
.imgproc1{
  margin-left: 10px;
}
.imgproc2{
  left: -37px;
}

.imgproc3{
  top: 0px;
  left: -84px; 
}

.imgproc4{
  top: 10px;
  left: -131px;
}

.imgproc5{
  top: 0px;
  left: -178px;
}
.imgproc6{
  top: 10px;
  left: -225px;
}
.imgproc7{
  top: 0px;
  left: -272px;
}
.imgproc8{
  top: 10px;
  left: -319px;
}
.imgproc9{
  top: 0px;
  left: -366px;
}
.imgproc10{
  top: 10px;
  left: -413px;
}
}



/* Equipos */
#Equipos button {
  padding: 5px 10px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#Equipos h1 {
  font-size: 6rem;
  color: #023a78;
}

#Equipos {
  background: linear-gradient(to bottom, #00a1d4 0%, #023a78 100%);
}

#Equipos h1 {
  color: #ffffff;
  margin: 3% 0;
}

.Equipos-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem;
}

.Equipo-card {
  flex: 0 0 calc(25% - 1rem);
  background-color: #f8f8f8;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Equipo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.Equipo-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.Equipo-description {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.Equipo-button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 1rem;
  user-select: none;
}

.carousel-btn:focus {
  outline: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 768px) {
  .Equipo-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .Equipo-card {
    flex: 0 0 100%;
  }
}

#Equipos a {
  text-decoration: none;
}

#Equipos .boton-general {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #003366;
  border: 3px solid #00B5E2;
  padding: 15px 10px;
  border-radius: 30px;
  background-color: white;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

#Equipos .boton-general:hover {
  background-color: #00B5E2;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

#Equipos button {
  padding: 5px 10px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Servicios */
    /* .seccion-servicios {
      position: relative;
      height: 100vh;
      overflow: hidden;
      color: #fff;
    }

    .fondo-parallax {
      position: absolute;
      top: 0;
      left: 0;
      width: 110%;
      height: 110%;
      background-image: url('../img/maquinas\ png/15383848020_img_3887_frei_kopie.jpg'); 
      background-size: cover;
      background-position: center;
      z-index: -1;
      transition: transform 0.2s ease;
    }

    .contenido-servicios {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      padding: 0 10%;
      gap: 50px;
      background-color: rgba(0, 0, 0, 0.4); 
    }

    .imagen-lado {
      width: 300px;
      height: 300px;
      background-image: url(''); 
      background-size: cover;
      background-position: center;
      border-radius: 10px;
    }

    .texto-lado {
      max-width: 600px;
    }

    .texto-lado p {
      font-size: 18px;
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .boton-servicio {
      padding: 12px 25px;
      background-color: white;
      color: black;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .boton-servicio:hover {
      background-color: #ddd;
    } */



/* Footer */
.footer {
  background-color: #003865; /* gris oscuro */
  padding: 40px;
  color: white;
  font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: 5%;
}

.footer-logo h1 {
  font-size: 3rem;
  margin: 0;
}

.footer-logo p {
    text-align: center;
    margin-top: 10px;
    font-size: 1.7rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* espacio entre enlaces */
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.footer-contact h3 {
  margin-bottom: 10px;
}

.footer-social {
  margin-top: 10px;
}

.footer-social span {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #ddd;
  color: #000;
  font-weight: bold;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
}
.img-footer{
  width: 250px;
  margin-top: 10%;
}

.footer-links {
  display: flex;
  align-items: center; /* centra verticalmente respecto al footer */
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}

.footer-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #ddd;
  color: #000;
  font-size: 18px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  transition: background 0.3s, color 0.3s;
}

.footer-social a:hover {
  background-color: #000;
  color: #fff;
}



/* Movil */

/*Baner*/
/* Ajustes responsivos para pantallas pequeñas */
@media (max-width: 768px) {
  .banner-carrusel {
    height: 500px;
  }

  .slide img {
    object-fit: cover;
  }

  .banner-text {
    font-size: 3rem;
    top: 25%;
    left: 5%;
    right: 5%;
    text-align: center;
    transform: none;
    padding: 10px;
  }

  .banner-text p {
    font-size: 1.5rem;
    margin-top: 10px;
  }

  .banner-btn {
    font-size: 1.5rem;
    padding: 10px 25px;
    margin-top: 10%;
  }

  .prev,
  .next {
    font-size: 30px;
    padding: 5px 15px;
  }

  .banner-text-right {
    right: 5%;
    text-align: center;
    left: 5%;
  }
}

@media (max-width: 480px) {
  .banner-carrusel {
    height: 400px;
  }

  .banner-text {
    font-size: 3rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }

  .banner-text p {
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }

  .banner-btn {
    font-size: 1.2rem;
    padding: 8px 20px;
    display: none;
  }

  .prev,
  .next {
    font-size: 24px;
    padding: 5px 10px;
  }
  .slide img {
  width: 100%;
  height: 100%;
   object-fit: fill;
  object-position: center;
  background-color: #000;
}

.banner-text {
    font-size: 1.2rem;
    top: 40% !important;
    left: 10%;
}


}


/* Heder */
@media (max-width: 768px) {

  .logo img {
    height: 100px;
    padding-left: 0;
    margin-left: 30%;
    margin-top: 5%;
  }

  .menu-toggle {
    display: block;
    /* aparece en móvil */
    color: black;
    position: fixed;
  }




  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0;
    /* Inicialmente sin padding para que no tome espacio */

    max-height: 0;
    /* Oculto */
    overflow: hidden;
    /* Oculta contenido */
    transition: max-height 0.8s ease, padding 0.8s ease, opacity 0.8s ease;
  }

  .nav.show {
    max-height: 500px;
    /* Ajusta según el tamaño del menú */
    padding: 20px 0;
    /* Aplica padding para que el contenido respire */
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .language-selector {
    margin-top: 10px;
  }
}


/* Baner Carrusel */

/* Responsive */
@media (max-width: 768px) {
  .banner-carrusel {
    height: 350px;
  }

  .banner-text {
    font-size: 1.2rem;
    top: 50%;
    left: 10%;
  }

  .prev,
  .next {
    font-size: 24px;
    padding: 8px 12px;
  }
}


/* Nosotros */

@media (max-width: 768px) {
  .logo-esquina {
    width: 50px;
    top: 5px;
    right: 5px;
  }
}


/*ALEXANDRA*/

/*SAIREM*/

/*MINI BANNER*/
.mini-banner {
  position: relative;
  height: 500px;
  background-image: url(../img/sairem/banner_mini.jpeg); /* reemplaza con tu imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  isolation: isolate;
}


.mini-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px; /* altura del difuminado */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, white 100%);
  pointer-events: none;
  z-index: 1;
}


.overlay-dark {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Oscurece la imagen */
  z-index: 1;
}

.overlay-text {
  position: relative;
  z-index: 3; /* Por encima de la imagen y el overlay */
  top: 50px;
}

.overlay-text h1 {
  font-size: 5rem; /* Ajusta a tu gusto */
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4); /* sombra al texto */
}

.linea-bajo-texto {
  width: 150px;
  height: 5px;
  background-color: #27AFDB;
  border: none;
  margin: 0 auto;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); /* sombra a la línea */
}

/*MINI BANNER*/

/*INTRO SAIREM*/

.sairem_prin{
  padding: 70px;
}

.sairem_prin h2{
  color: #dd2629;
}

.logo-text-row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .logo-text-row img {
    max-height: 100px;
    margin-bottom: 15px;
  }
  .logo-text-row h2 {
    margin: 0;
  }

  /* Cuando la pantalla sea más ancha que 768px */
  @media (min-width: 768px) {
    .logo-text-row {
      flex-direction: row;
      align-items: center;
    }
    .logo-text-row img {
      margin-bottom: 0;
      margin-right: 15px;
    }
  }

  .inicio_sairem{
    margin-top: 30px;
  }
  .inicio_sairem p{
    font-size: 2rem;
  }

 .titulo_redondeado {
    color: #023a78;
    font-weight: bold;
    border: 4px solid #00a1d4;
    border-radius: 50px;
    padding: 10px;
    max-width: 400px;
    margin-top: 40px;
    text-align: center;
    font-size: 2rem;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
}

.text_sairem {
  margin-top: 30px;
  text-align: justify
}

.video_sairem{
  width: 100%; 
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-left: 30px;
}

.loguito_sairem{
  position: absolute; 
  bottom: -60px; 
  right: 10px; 
  width: 100px;
   height: auto;
    opacity: 0.8;
}

/*INTRO SAIREM*/

/*CARDS SAIREM*/

.sairem_cards{
  padding: 70px;
}

.product-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    margin-bottom: 30px;
  }

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }

  .product-img {
    width: 100%;
    height: 200px;
    object-fit:fill;
    transition: transform 0.4s ease;
  }

    
/*     .product-img {*/
/*    width: 100%;*/
/*    height: 400px;*/
/*    object-fit: cover;*/
/*    transition: transform 0.4s ease;*/
/*}*/
/*.product-card {*/
/*    border-radius: 20px;*/
/*    border: 1.5px solid;*/
/*    border-color: #428bca;*/
/*    overflow: hidden;*/
/*    background-color: #fff;*/
/*    margin-bottom: 30px;*/
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.20),  /* sombra abajo */
/*        0 -5px 15px rgba(0, 0, 0, 0.1);*/
/*    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*}*/


  .product-card:hover .product-img {
    transform: scale(1.05);
  }

  .product-title {
    font-size: 1.6rem;
    font-weight:bold;
    padding: 15px;
    text-align: center;
    color: #333;
  }

  /*CARDS SAIREM*/


  /*MAS PROCESOS */

  .procesos_barra{
    padding: 70px;
    padding-top: 10px;
    background-color: #bfe0ea;
  background: linear-gradient(to bottom, #ffffff, #b2ddeb);
  }

   .procesos_barra h2{
    text-align: center;
    color: #023A78;
    font-weight: bold;
   }

   .procesos_b{
    margin-top: 60px;
   }

.boton-proceso {
      display: block;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      color: #003366;
      border: 3px solid #00B5E2;
      padding: 15px 10px;
      border-radius: 30px;
      background-color: white;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }

    .boton-proceso:hover {
      background-color: #00B5E2;
      color: white;
      text-decoration: none;
    }
  
    /*MAS PROCESOS */

     /*PAGINA INDIVIDUAL PRODUCTOS*/


.awm100_pad{
  padding: 70px;
  margin-top: 140px;
}

 .titulo_redondeado_ind {
    color: #023a78;
    font-weight: bold;
    border: 4px solid #00a1d4;
    border-radius: 50px;
    padding: 10px;
    max-width: 400px;
    text-align: center;
    font-size: 2rem;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
    margin-left: 30px;
}

.text_prod{
  text-align: justify;
}

.text_prod h3{
  font-weight: bold;
  margin-top: 0;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  align-items: start;
}

.benefits-list i {
  color: #023A78; /* Azul Bootstrap */
  margin-right: 10px;
  margin-top: 4px;
  font-size: 1.8rem;
  min-width: 20px;
}

.inicio_produc{
    margin-top: 70px;
  }
  .inicio_produc p{
    font-size: 2rem;
  }

  .imagen-estilizada {
    margin-top: 40px;
    max-width: 800px; /* Ajusta según necesites */
    width: 100%;
    border: 3px solid #00A1D4; /* Azul Bootstrap */
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Opcional: animación al hacer hover */
/* .imagen-estilizada:hover {
    transform: scale(1.03);
} */

.descargar {
    color: #023a78;
    font-weight: bold;
    border: 4px solid #00a1d4;
    border-radius: 50px;
    padding: 10px;
    max-width: 400px;
    text-align: center;
    font-size: 2rem;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
    margin-left: 30px;
    margin: 0 auto;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.descargar:hover  {
    transform: scale(1.05);
  }

  .pdf_desc {
    text-decoration: none;
}

.pdf_desc:hover,
.pdf_desc:focus,
.pdf_desc:active {
    text-decoration: none;
}

/*DESCONGELADO Y MARINADO*/

/*CABIN Y HENNEKEN*/

.linea-bajo-texto-dm {
  width: 50%;
  height: 5px;
  background-color: #27AFDB;
  border: none;
  margin: 0 auto;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); /* sombra a la línea */
}

.mini-banner_dm {
  position: relative;
  height: 500px;
  background-image: url(../img/cabin/marinado_descongelado.png); /* reemplaza con tu imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  isolation: isolate;
}

.mini-banner_dm::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px; /* altura del difuminado */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, white 100%);
  pointer-events: none;
  z-index: 1;
}

 .inicio_dm{
    margin-top: 30px;
    text-align: center;
  }
  .inicio_dm p{
    font-size: 2rem;
  }

  .inicio_dm h2{
    color: #003366;
    font-weight: bold;
  }

  .cuadro_dm {
      display: block;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      color: #003366;
      border: 5px solid #00B5E2;
      padding: 15px 10px;
      border-radius: 30px;
      background: radial-gradient(circle, #ffffff 10%, #d3ecf7 90%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }

     .product-img-dm  {
    width: 100%;
    height: 300px;
    object-fit:contain;
    transition: transform 0.4s ease;
  }

  .product-img-dm {
    transform: scale(1.05);
  }

  .dm_cards{
    padding: 70px;
    padding-top: 0px;
  }

 
  .inicio_cab-dm p{
    font-size: 2rem;
  }

  .mini-banner_dmcab {
  position: relative;
  height: 500px;
  background-image: url(../img/cabin/cab4.png); /* reemplaza con tu imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  isolation: isolate;
}

.mini-banner_dmcab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px; /* altura del difuminado */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, white 100%);
  pointer-events: none;
  z-index: 1;
}
.cabin_parraf p{

  text-align: justify;
  font-size: 16PX;
}

.iniciocab_produc{
  margin-top: 30px
}

  .imagen-estilizada-cab {
    margin-top: 30px;
    max-width: 800px; /* Ajusta según necesites */
    width: 100%;
    border: 3px solid #00A1D4; /* Azul Bootstrap */
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cabin_pdf{
  margin-left: 0px ;
}

.btn-flotante {
  position: fixed;
  /* top: 50%; */
   bottom: 20px;
  left: 0;
  transform: translateY(-50%);
  background-color: #00A1D4;
  color: white;
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.btn-flotante:hover {
  background-color: #007ea7;
  text-decoration: none;
  color: white;
}


/*heneeken*/

.mini-banner_hk {
  position: relative;
  height: 500px;
  background-image: url(../img/heneken_dm/henekenfaj.jpeg); /* reemplaza con tu imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  isolation: isolate;
}

.mini-banner_hk::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px; /* altura del difuminado */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, white 100%);
  pointer-events: none;
  z-index: 1;
}

.tithh {
  margin-top: 70px;
    text-align: center;
    color: #023A78 !important;
    font-weight: bold;
    font-size: 4rem;
   }

   .titulo_redondeado-hh {
    color: #023a78;
    font-weight: bold;
    border: 4px solid #00a1d4;
    border-radius: 50px;
    padding: 10px;
    max-width: 300px;
    margin-top: 40px;
    text-align: center;
    font-size: 2rem;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
}



.hover-container {
  position: relative;
  overflow: hidden;
  border-radius: 30px; /* Igual que la imagen */
}

.imagen-estilizada-zoom {
  max-width: 800px;
  margin-top: 30px;
  width: 100%;
  border: 3px solid #00A1D4;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: block;
}

.hover-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(83, 119, 152, 0.5); /* Fondo difuminado */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  transition: opacity 0.3s ease;
  border-radius: 30px;
  margin-top: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* <- Aquí la sombra */
}

.hover-container:hover .hover-text {
  opacity: 1;
}

.responsive-table {
  overflow-x: auto;
  margin: 20px 0;
  margin-top: 50px;
}

.responsive-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px; /* hace que tenga scroll horizontal en móviles */
}

.responsive-table th,
.responsive-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: center;
}

.responsive-table thead {
  background-color: #f2f2f2;
}

.responsive-table th {
  color:#08A4D5;
  font-weight: bold;
}

.color-hen{
   background-color: #b7e5f380;
        padding: 30px;
        margin-top: 50px;
        border-radius: 30px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.color-hen  h2{
  font-size: 2rem;
  font-weight: bold;
}

/*SECCION DE 4 QUE EN ESTE CASO SERA DE 3*/


#seccion-cuatro{
 padding-top: 0px;
}



.no_marg {margin-left: 0; margin-right: 0;}
.no_padd {padding-left: 0; padding-right: 0;}



.mdx_003 {
  position: relative;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    background-color: #000;
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    padding: 40% 25px;
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    
}

.mdx_003 * {
  -webkit-transition: all 0.95s;
  transition: all 0.95s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  
  
}
.mdx_003 img {
    max-width: 100%;
    vertical-align: top;
    width: 65%;
    margin: 35px auto;
    display: block;
}
.mdx_003:hover img {
	opacity: 0;
	transform: translate(0,100px);
    -webkit-transform: translate(0,100px);
    -o-transform: translate(0,100px);
    -moz-transform: translate(0,100px);
}
.mdx_003 figcaption {
  position: absolute;
  height: 75px;
  left: 0;
  right: 0;
  bottom: -75px;
  overflow: hidden;
  padding: 40px;
  background-color: transparent;
  border-radius: 0;
}
.mdx_003 h3 {
  font-size: 40px;
  letter-spacing: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 10px 0;
  
}

.mdx_003 h4{
  text-align: center;
  font-size: 2.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
.mdx_003 blockquote {
  padding: 0;
  margin: 30px 0 0 0;
  font-size: 1em;
  border-left: none;
}
.mdx_003:hover figcaption,
.mdx_003.hover figcaption {
  height: calc(95%);
}

.mdx_003.bg_001 {
    background: linear-gradient(rgb(50 62 72 / 60%), rgb(50 62 72 / 30%)), url(../img/hombres.jpeg);
    background-size: cover;
    background-position: 50% 50%;
}
.mdx_003.bg_002 {
    background: linear-gradient(rgb(50 62 72 / 60%), rgb(50 62 72 / 30%)), url(../img/hombrecamioneta.png);
    background-size: cover;
    background-position: 50% 50%;
}
.mdx_003.bg_003 {
    background: linear-gradient(rgb(50 62 72 / 60%), rgb(50 62 72 / 30%)), url(../img/tecnico.jpeg);
    background-size: cover;
    background-position: 50% 50%;
}

.mdx_003.bg_004 {
  background: linear-gradient(rgb(50 62 72 / 60%), rgb(50 62 72 / 30%)), url(../img/frame4.png);
  background-size: cover;
  background-position: 50% 50%;
}

.mdx_003 .img-text {
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  display: block;
  margin: 35px auto;
  color: #fff;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.95s;
}

.mdx_003:hover .img-text {
  opacity: 0;
  transform: translateY(100px);
}


/*SECCION DE 4 MOVIMIENTOS*/

/* Marcas */
.carrusel-marcas {
  overflow: hidden;
  background: #fff; /* Cambia si quieres otro fondo */
  padding: 20px 10%;
  padding-bottom: 10%;
  align-items: center;
}

.slider-marcas {
  height: 100px; /* Altura del carrusel */
  display: flex;
  align-items: center;
  width: 90%;
  overflow: hidden;
}

.slide-track-marcas {
  display: flex;
  width: calc(250px * 10); /* 10 imágenes en total */
  animation: scroll 20s linear infinite;
}

.slide-marcas {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

.slide-marcas img {
  height: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.slide-marcas img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marcash1 h1{
  font-size: 6rem;
  color: #003366;
}

.marcash1 h2{
  font-size: 3rem;
  color: #00a1d4;
}

.carrusel-marcas {
  background: #fff;
  padding: 20px 10%;
  padding-bottom: 10%;
}

.marcash1 h1 {
  font-size: 6rem;
  color: #003366;
}

.marcash1 h2 {
  font-size: 3rem;
  color: #00a1d4;
}

.marca-img {
    height: 100px;
  object-fit: contain;
  transition: transform 0.5s ease;
  will-change: transform;
  margin-bottom: 50px;
  
}

/*.marca-img:hover {*/
/*  transform: scale(1.5); */
  
/*}*/

.marca-wrap {
  overflow: hidden;
}

/*RESPONSIVIDAD DE SAIREM*/

@media (min-width: 270px) and (max-width: 353px) {
 .overlay-text h1 {
    font-size: 3.5rem;
}
.sairem_prin {
    padding: 7px;
}
.dm_cards {
    padding: 0px;
}
.product-img-dm {
    height: 200px;
}
.inicio_dm p {
    font-size: 1.5rem;
}
.inicio_dm h2 {
    font-size: 2rem;
}
.procesos_barra {
    padding: 0px;
  }
  .sairem_cards {
    padding: 0px;
}
}

@media (min-width: 200px) and (max-width: 269px) {
 .overlay-text h1 {
    font-size: 2.5rem;
}
.sairem_prin {
    padding: 7px;
}
.dm_cards {
    padding: 0px;
}

.product-img-dm {
    height: 200px;
}
.inicio_dm p {
    font-size: 1.5rem;
}
.inicio_dm h2 {
    font-size: 2rem;
}
.procesos_barra {
    padding: 0px;}
    .sairem_cards {
    padding: 0px;
}
}


.product-card {
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 
        0 10px 15px rgba(0, 0, 0, 0.20),  /* sombra abajo */
        0 -5px 15px rgba(0, 0, 0, 0.1);   /* sombra arriba */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 14px 40px rgba(0, 0, 0, 0.3),   /* más profunda abajo */
        0 -8px 20px rgba(0, 0, 0, 0.15);  /* también arriba */
}

.video_sairem {

    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  
}

.titulo_redondeado {
    color: #023a78;
    font-weight: bold;
    border: 4px solid #00a1d4;
  
    font-size: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), 
                0 -3px 6px rgba(0, 161, 212, 0.25);
    background: linear-gradient(135deg, #ffffff, #f1f9ff);
    letter-spacing: 0.5px;
    
    isolation: isolate;
}

.product-title {
   
    font-weight: bold;
    padding: 15px 20px;
    text-align: center;
    color: #023a78;
     background: linear-gradient(135deg, #ffffff, #f1f9ff);
    
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
   
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.titulo_redondeado_ind {
    color: #023a78;
    font-weight: bold;
    border: 4px solid #00a1d4;
    border-radius: 50px;
    padding: 10px;
    max-width: 400px;
    text-align: center;
    font-size: 2rem;
    margin-left: 30px;

   
  
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), 
                0 -3px 6px rgba(0, 161, 212, 0.25);
    background: linear-gradient(135deg, #ffffff, #f1f9ff);
    letter-spacing: 0.5px;
    
    isolation: isolate;
}

@media (min-width: 270px) and (max-width: 395px) {
.sairem_prin {
    padding: 10px;
}
.dm_cards {
    padding: 0px;
    padding-top: 0px;
}
.procesos_barra {
    padding: 0px;
}

.sairem_cards {
    padding: 0px;
}


}

@media (min-width: 240px) and (max-width: 343px) {
.logo-text-row img {
    max-height: 70px;
    margin-bottom: 15px;
}
.inicio_cab-dm p {
    font-size: 1.5rem;
}
}

@media (min-width: 200px) and (max-width: 239px) {
.logo-text-row img {
    max-height: 40px;
    margin-bottom: 15px;
}
.inicio_cab-dm p {
    font-size: 1.5rem;
}
}

@media (min-width: 200px) and (max-width: 765px) {
.titulo_redondeado_ind {
    
    margin-left: 0px;
    
}

.video_sairem {
   
    margin-left: 0px;
}
}

@media (min-width: 200px) and (max-width: 380px) {
.awm100_pad {
    padding: 0px;
    padding-bottom: 30px;
}
.text_prod h3{
    text-align: center;
}
}

@media (min-width: 200px) and (max-width: 248px) {
.logo-text-row img {
    
    width: 150px;
    margin-top: 30px;
    margin-bottom: 30px;
}


}



.producmargin{
  margin-top: 90px;
  padding: 20px;
}

.product-card-nuv {
  position: relative;
  overflow: visible;
  background:linear-gradient(178deg, #00A1D4, #023a78);
  /* border: 3px solid #00A1D4; */
  border-radius: 22px;
  padding: 100px 24px 32px;
  transition: transform 0.2s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: -1px 6px 25px 5px rgba(0, 0, 0, .18);
  isolation: isolate;
}

.product-card-nuv::before {
  content: "";
  position: absolute;
  inset: 0;
  background:linear-gradient(178deg, #023a78, #00A1D4);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  transition: opacity 0.4s ease;
}

.product-card-nuv:hover::before,
.product-card-nuv.featured::before {
  opacity: 1;
}

.product-card-nuv:hover,
.product-card-nuv.featured {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.product-card-nuv .img-nuv {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.product-card-nuv .img-nuv img {
  width: 400px;
  height: auto;
  max-width: none;
  transition: transform 0.4s ease;
}

.product-card-nuv:hover .img-nuv img {
  transform: scale(1.05);
}

.product-card-nuv h3 {
  margin: 30px 0 8px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #023a78;
}

.product-card-nuv.featured p,
.product-card-nuv:hover p {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: block;
  width: 60%;
  background: #fff;
  color:  #023a78;
  border: 3px solid  #00A1D4;/* Añadido el borde del mismo color del texto */
  font-weight: 600;
  margin: 30px 0 8px;
  border-radius: 999px;
  /* padding: 12px 20px; */
  cursor: pointer;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  text-align: center;
}

.product-card-nuv:hover .btn,
.product-card-nuv.featured .btn {
  background: #fff;
  color: #00A1D4;
  transform: scale(1.03);
  border: 3px solid  #023a78;
}

.mini_banner_preparacion{
        background-image: url(../img/kgwetter/banner_mini.jpeg);
}




/*Contacto*/

.contact-section {
    margin-top: 105px;
    background-image: url(../img/Figurasfondo.svg);
    padding: 40px 10px;
    display: flex;
    justify-content: center;
}
.contact-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    /* max-height: 700px; */
    width: 100%;
    text-align: center;
}

.contact-container h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font:bold;
  color:#023a78;
}

.contact-container p {
  font-size: 18px;
  margin-bottom: 30px;
  color:#00a1d4;
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color:#023a78;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border-color 0.3s;
  color:#00a1d4;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007BFF;
  outline: none;
}
.contact-form input::placeholder{

  color:#00a1d4;
}
.contact-form textarea::placeholder {
    
  color:#00a1d4;
}


.contact-form button {
  text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: #003366;
    border: 3px solid #00B5E2;
    padding: 15px 40px;
    border-radius: 30px;
    background-color: white;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.contact-form button:hover {
    background-color: #00B5E2;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/*MEDIA QUERIES PARA BANNER*/





/*.banner-carrusel {*/
/*    width: 100%;*/
/*    height: 620px;*/
/*}*/




/*.banner-text {*/

/*    top: 19%;*/
/*    font-size: 8rem;*/
/*}*/

/*.banner-btn {*/
    
/*    margin-top: 5%;*/
/*}*/


@media (min-width: 479px) and (max-width: 1920px) {
    
    
.banner-carrusel {
    width: 100%;
    height: 620px;
}



.banner-text {

    top: 19%;
    font-size: 8rem;
}

.banner-btn {
    
    margin-top: 5%;
}
    
    
}














