/* Importar la fuente de Google */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;800&display=swap');

/* Aplicar la fuente a toda la página */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.custom-card {
    height: 550px !important; /* Ajusta la altura total */
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f0f0f0 !important;
}

.custom-card-grey {
        height: 550px !important; /* Ajusta la altura total */
        border-radius: 8px;
        box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    background-color: #ffffff !important;
}



.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .whatsapp-float img {
    width: 30px;
    height: 30px;
    filter: invert(1);
  }


    .btn-minimal {
      background-color: transparent;
      color: #001e44;
      border: 2px solid #001e44;
      padding: 10px 20px;
      border-radius: 30px;
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    .btn-minimal:hover {
      background-color: #001e44;
      color: #fff;
      box-shadow: 0 4px 12px rgba(116, 28, 175, 0.3);
    }





  .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }


  @media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1322px;
    }

.full-width-carousel .item {
    width: 100%;
    height: auto; /* Ajusta altura al 40% del viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.full-width-carousel .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .full-width-carousel .item {
        height: 25vh; /* Reduce altura en móviles */
    }
}


.owl-carousel .item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
h4 {
    color: #817e8c;
  font-weight: 600;
}
.btn-primary {
    color: #fff;
    background-color: #001e44;
    border-color: #8026b5;
    padding: .2rem .75rem;
  }

.card-text {
    display: flex;
    align-items: center; /* Centra verticalmente */
    gap: 5px; /* Espacio entre el icono y el texto */
}
.material-symbols-outlined {
    font-size: 24px; /* Ajusta el tamaño del icono */
}


/* Estilos personalizados para el menú */
.navbar {
    background: linear-gradient(45deg, #fff, #ffffff);
    padding: 0px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}


.card img {
    height: 150px;
    object-fit: cover;
}

.card {
    border: 2px solid rgba(0, 0, 0, 0.24);
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}



.navbar-brand {
    font-size: 22px;
    font-weight: bold;
    color: #051525 !important;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #051525 !important;
    padding: 0px 15px 0px 15px;
}

.nav-link:hover {
    color: #6904ac !important;
}

.btn-contacto {
    background: #ffc107;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-contacto:hover {
    background: #ffae00;
    color: #fff;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .navbar-collapse {
        background: #222;
        padding: 10px;
        border-radius: 10px;
    }
    .nav-link {
        text-align: center;
    }
}