.text-white {
    text-decoration: none; /* Elimina el subrayado */
}

.date-text {
    border: 0;
    font-size: 20px;
}

.brand-text {
    font-size: 18px;
    text-transform: none;
    vertical-align: middle;
}

.speakers-thumb {
    width: 400px;
    height: auto; /* Mantiene la proporción */
}

.speakers-image2 {
    width: 400px;
    height: auto; /* Mantiene la proporción */
}

.speakers-image {
    width: 300px;
    height: auto; /* Mantiene la proporción */
}

.speakers-thumb {
    width: 100%; /* Ajusta el contenedor al 100% de la columna */
    max-width: 400px; /* Limita el ancho máximo del contenedor */
    margin: auto; /* Centra el contenido si es necesario */
}

.speakers-thumb img {
    width: 100%; /* Asegura que las imágenes se ajusten al ancho del contenedor */
    height: 10%; /* Mantiene la proporción */
    object-fit: cover; /* Asegura que las imágenes no se deformen */
}

.text-center{
    text-align: left;
}

.logo-footer{
    color: var(--primary-color);
    font-size: 16px;
}


@media (max-width: 767px) {
    .highlight .col-6 {
        padding: 0 5px;
    }
    
    .highlight-thumb {
        aspect-ratio: 1 / 1;
        overflow: hidden;
        margin-bottom: 10px;
    }
    
    .highlight-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .highlight-info {
        padding: 10px;
    }
    
    .highlight-title {
        font-size: 0.9em;
    }
    
    .highlight-title .small-text {
        font-size: 0.7em;
    }
    
    .highlight-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 767px) {
    .arrow-icon {
        display: none;
    }
    .hero {
        height: calc(75vh - 180px);
    }
}


* {
    font-family: 'Open Sans', sans-serif;
  }

  /* Palette overrides for Bootstrap utilities and buttons */
  :root {
    /* Keep template variables as single source of truth if loaded earlier */
    --primary: #003171; /* Bootstrap primary */
    --secondary: #B3DDF1; /* Bootstrap secondary */
  }

  /* Ensure all underline elements render with secondary color */
  u {
    color: var(--secondary) !important;
    text-decoration-color: var(--secondary) !important;
  }

  .btn-primary,
  .btn-primary:visited {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
  }
  .btn-primary:hover,
  .btn-primary:focus {
    background-color: #002657 !important; /* slightly darker */
    border-color: #002657 !important;
  }

  .btn-secondary,
  .btn-secondary:visited {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #003171 !important; /* readable on light secondary */
  }
  .btn-secondary:hover,
  .btn-secondary:focus {
    background-color: #9ecfe9 !important; /* darker than base */
    border-color: #9ecfe9 !important;
    color: #002657 !important;
  }

  .bg-primary { background-color: var(--primary) !important; }
  .text-primary { color: var(--primary) !important; }
  .border-primary { border-color: var(--primary) !important; }

  .bg-secondary { background-color: var(--secondary) !important; }
  .text-secondary { color: var(--secondary) !important; }
  .border-secondary { border-color: var(--secondary) !important; }

  /* Categories (Bootstrap info) → use secondary brand color */
  .bg-info,
  .text-bg-info {
    background-color: var(--secondary) !important;
  }
  .badge.bg-info,
  .badge.text-bg-info,
  .badge.bg-info.text-white {
    background-color: var(--secondary) !important;
    color: #003171 !important; /* primary for contrast */
  }

  /* Invert colors for category badge in Novedades only */
  .news-packages .badge-custom {
    background-color: var(--primary) !important;
    color: var(--secondary) !important;
    border-color: var(--primary) !important;
  }
  
  .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
  }
  
  .responsive-cell-block {
    min-height: 50px;
  }
  
  .responsive-container-block {
    min-height: 50px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: space-evenly;
  }
  
  .outer-container {
    padding-top: 10px;
    padding-right: 50px;
    padding-bottom: 10px;
    padding-left: 50px;
    background-color: rgb(255, 255, 255);
  }
  
  .inner-container {
    max-width: 1320px;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }
  
  .section-head-text {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    font-size: 35px;
    font-weight: 700;
    line-height: 48px;
    color: rgb(0, 135, 177);
    margin: 0 0 10px 0;
  }
  
  .section-subhead-text {
    font-size: 25px;
    color: rgb(153, 153, 153);
    line-height: 35px;
    max-width: 470px;
    text-align: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 60px;
    margin-left: 0px;
  }
  
  .img-wrapper {
    width: 100%;
  }
  
  .team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-media-links {
    width: 125px;
    display: flex;
    justify-content: space-between;
  }
  
  .name {
    font-size: 25px;
    font-weight: 700;
    color: rgb(102, 102, 102);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
  }
  
  .position {
    font-size: 25px;
    font-weight: 700;
    color: rgb(0, 135, 177);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }
  
  .team-img {
    width: 100%;
    height: 100%;
  }
  
  .team-card-container {
    width: 200px;
    margin: 0 0 40px 0;
  }
  
  @media (max-width: 500px) {
    .outer-container {
      padding: 10px 20px 10px 20px;
    }
  
    .section-head-text {
      text-align: center;
    }
    .highlight {
        padding-bottom: 60px;
    }
    .highlight-title {
      font-size: 0.95em;
  }

  }


  .social-media-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-media-links img {
    width: 30px; /* Ajusta este valor para cambiar el tamaño del icono */
    height: auto; /* Mantiene la proporción del icono */
}

.about{
    padding-bottom: 10px;
}

.inner-container{
    margin-bottom: 0px;
}

.schedule{
    padding-top: 75px;
}

.schedule {
  background:var(--section-bg-color);
}

