/* ----------------------------- */
/* FUENTES Y CUERPO PRINCIPAL   */
/* ----------------------------- */

body {
  
  font-family: 'Segoe UI', sans-serif;
}

/* ----------------------------- */
/* TITULOS Y TEXTOS             */
/* ----------------------------- */
h1 {
  color: #163A56;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: left; /* h2 ya lo tenía */
}

h3, p, ul {
  font-family: 'Montserrat', sans-serif;
}

h2 {
    font-size: 25px;
    font-weight: bold;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.lead {
  font-size: 19px;
}

.lead.my-3 {
  color: white;
}

.somos {
  font-size: 50px;
}

    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
    }

    .cards-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    

    

    .card:hover {
      transform: translateY(-10px);
    }

    .card h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
    }

    .card ul {
      padding-left: 20px;
      text-align: left;
    }

    @media (max-width: 768px) {
      .cards-container {
        flex-direction: column;
        align-items: center;
      }
    }

/* ----------------------------- */
/* NAVBAR                       */
/* ----------------------------- */

/* Navbar general */
nav {
  background: linear-gradient(to right, #FFF8EA, #f5e3bf, #ebd1a5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  padding-top: 0;     /* 👈 esto ayuda */
  padding-bottom: 0;  /* 👈 esto también */
}

@media (max-width: 991.98px) {
  #navbartext {
    display: none !important;
  }
}

/* Menú */
.navbar-nav {
  position: relative;
  left: 30%;
  z-index: 1000;
  font-weight: bold;
  height: 100%;
}

/* Links del menú */
.navbar .nav-link {
  height: 100%;
  transition: background-color 0.3s ease;
  color: #163A56;
  display: flex; /* 👈 esto hace que el link llene verticalmente */
  align-items: center; /* centra el texto verticalmente */
  padding: 1.5rem 1.5rem; /* más altura */
  border-radius: 0; /* sin redondeo para fondo recto */
}

/* Estados interactivos */
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  background-color: white;
  color: #0056b3;
  font-weight: normal;
}

nav.navbar {
  background: linear-gradient(to right, #FFF8EA, #f5e3bf, #ebd1a5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  padding-top: 0;     /* 👈 esto ayuda */
  padding-bottom: 0;  /* 👈 esto también */
}

/* Hover, foco y activo */
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  background-color: white;
  color: #0056b3;
  font-weight: normal;
}

/* --------------------------   --- */
/* BOTONES                      */
/* ----------------------------- */
.btn-primary {
  background-color: #2e6da4;
  border-color: #204d74;
}

/* ----------------------------- */
/* SECCIONES GENERALES          */
/* ----------------------------- */
#text_20 {
  background: linear-gradient(to right, #FFF8EA, #f5e3bf, #ebd1a5);
}

#text_21 {
  text-align: center;
}

#text_23,
#text_24,
#text_25,
#text_30,
#text_33,
#text_33,
#text_38,
#text_43,
#text_48,
#text_53,
#text_58,
#text_63,
#text_68,
#text_73,
#text_78,
#text_82 {
  font-family: 'Montserrat', sans-serif;
}

#text_182 {
  font-size: 25px;
}

.textoslider {
  font-size: calc(1.2625rem + .15vw);
}

.quienes-somos {
  padding: 300px;
  text-align: center;
  background-color: blue;
}

.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

/* ----------------------------- */
/* CLIENTES                     */
/* ----------------------------- */
#clients {
  padding: 60px 0;
}

#clients .clients-wrap {
  border-top: 1px solid white;
  border-left: 1px solid white;
  margin-bottom: 30px;
}

#clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px;
  background: #fff;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  overflow: hidden;
  height: 160px;
}

#clients img {
  transition: all 0.4s ease-in-out;
}

/* ----------------------------- */
/* CARRUSEL DE TARJETAS         */
/* ----------------------------- */

.card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden; /* 👈 Esto es CLAVE para que nada sobresalga */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 180px; /* O el alto que quieras */
  object-fit: cover;
  display: block; /* 👈 Elimina espacios debajo de la imagen (espacios de línea) */
}

@media (min-width: 768px) {
  .card img {
    height: 11em;
  }
}

.carousel-control-prev,
.carousel-control-next {
  margin: 0;
}

/* ----------------------------- */
/* BANNER                        */
/* ----------------------------- */



/* ----------------------------- */
/* BOTONES DE IDIOMA            */
/* ----------------------------- */
.languages {
  display: flex;
  gap: .5rem;
  margin: auto;
}

.lang-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 100px;
  padding: 2px 2px;
  font-size: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-right: 10px;
}

.lang-button img {
  width: 30px;
  height: 30px;
  border-radius: 20px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0);
}

.lang-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.lang-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ----------------------------- */
/* ENLACES PERSONALIZADOS       */
/* ----------------------------- */
.super {
  text-decoration: none;
  color: white;
}


.servicios-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  background-color: #2b2e31; /* el fondo oscuro que usás */
}

.servicio-card {
  position: relative;
  width: 280px;
  padding: 60px 20px 20px;
  background: none;
  text-align: center;
  color: #111;
  font-family: 'Montserrat', sans-serif;
}

.servicio-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  width: 100%;
  max-width: 260px;
  background: #f8e9cc;
  border-radius: 20px;
  z-index: -1;
}

.servicio-card i {
  font-size: 32px;
  color: #5f7891;
  margin-bottom: 10px;
  display: block;
}

.servicio-card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  color: #000;
}

.servicio-card p {
  font-size: 14px;
  color: #333;
}




.carousel-item {
      padding: 20px 0;
      
    }

    .logo-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
    }

    .logo-container img {
      max-height: 80px; /* Ajustás el tamaño de los logos */
      max-width: 150px;
      object-fit: contain;
      /* filter: grayscale(100%); */
      transition: transform 0.3s;
    }

    .logo-container img:hover {
      transform: scale(1.1);
      filter: grayscale(0%);
    }

    .card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden; /* asegura que nada sobresalga */
  padding: 0; /* elimina ese borde interno indeseado */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img,
.card .card-img-top {
  width: 100%;
  height: auto; /* ⚠️ este es el cambio clave */
  object-fit: contain; /* o quitá esta línea si querés comportamiento natural */
  display: block;
  margin: 0;
}

.card-body {
  padding: 15px; /* si querés espacio entre imagen y texto */
}

.card-title {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

/* ----------------------------- */
/* Color de fondo de Servicios   */
/* ----------------------------- */

.custom-bg {
  background: linear-gradient(to right, #163b56, #4d6d8a);
}

.card-hover {
  transition: transform 0.1s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}


.carousel-control-prev {
  left: 1px;
  margin: 0;
}

.carousel-control-next {
  right: 1px;
  margin: 0;
}



.logo-container img {
  margin: 0 10px;
  max-height: 80px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}

@media (max-width: 768px) {
  #text_75 {
    font-size: 2.5rem; /* Ajustá este valor para que quede cómodo */
  }
}

@media (max-width: 767.98px) {
  .card-servicio {
    max-height: 300px; /* o lo que necesites */
    overflow: hidden;
  }

  .card-servicio p {
    font-size: 0.9rem; /* achica un poco el texto si querés */
  }
}

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
}

.slider-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: scrolling 20s linear infinite;

}

@keyframes scrolling {

    0% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(-20%);
    }
}

.slider-items img {
    width: 12%;
    margin: 20px;

}

.logosslider {
    display: grid;
    place-items: center;
}


