*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
    font-family: 'Rubik', sans-serif;
    background-color: white;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ======================================  
   =            NAVBAR                  =
   ====================================== */

header{
  margin: 0;
  padding: 0;
}

.servicios-dropdown {
  position: relative;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #003f80;
  padding: 30px;
  width: 90vw;
  max-width: 1000px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 10px;
  display: none;
}

.servicios-dropdown:hover .dropdown-menu-custom {
  display: block;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.servicio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px;
  background-color: #004a99;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.servicio-item:hover {
  background-color: #F4A01D;
  color: #000;
}

.servicio-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: invert(1);
}

.servicio-item p {
  margin: 0;
  font-size: 14px;
  color: white;
}

.navbar {
    background-color: #ffffff;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    top: 0;
    width: 100%;
    position: fixed;
    z-index: 9999;
    display: flex;               
    justify-content: center;     
    align-items: center;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
  }

  .navbar-toggler {
    border: none;
  }

.container-fluid {
  max-width: 1300px;       
  margin: 0 auto;          
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

  .navbar-nav {
    display: flex;
    justify-content: center;
    align-items:center;
    width: 100%;
    padding: 10px 15px 10px;
    font-weight: 500;
  }
  
  .nav-link {
    color: black;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    font-size: 15px;
    padding: 8px 15px;
  }

.contact-btn {
  background-color: #F4A01D;
  color: #fff !important;
  border-radius: 20px;
  padding: 8px 16px;
  transition: none;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  border: none;
  text-decoration: none !important;
} 


.contact-btn:hover {
  color: #F4A01D !important;
  background-color: #1F345F;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
  
  .nav-link:hover {
    color: #1F345F;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #1F345F;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease-in-out;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .logo-consulta {
    width: 150px;
    padding: auto;
    transition: width 0.3s ease, padding 0.3s ease;
  }

  /* Navbar cuando haces scroll hacia abajo */
.navbar.shrink {
    padding: 0.4rem 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  

  .navbar.shrink .logo-consulta {
    width: 100px;
    padding-top: 2px;
    padding-bottom: 5px;
  }

  #mainNavbar {
    transition: all 0.3s ease;
  }
  
  #mainNavbar.shrink {
    background-color: rgba(226, 218, 218, 0.8); 
  }





/* ======================================  
   =            INICIO            =
   ====================================== */

@media (min-width: 1024px) {
  #inicio {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .titulo-principal {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .subtitulo {
    font-size: 16px;
  }
}



/* Hero Section */
#inicio {
  width: 100%;
  height: 100vh;
  background: url("/IMG/inicio.webp") top center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.logo-principal {
  max-width: 100%;
  width: 600px; 
  height: auto;
  margin-bottom: 50px;
}

#inicio::before {
  content: "";
  position: absolute;
  background: rgba(6, 12, 34, 0.8);
  inset: 0;
}

.contenedor-hero {
  position: absolute;
  inset: 0;
  top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
  z-index: 1;
}

.titulo-principal {
  color: #fff;
  
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
}

.titulo-principal span {
  color: #F4A01D;
  font-weight: bold;
}

.subtitulo {
  color: #F4A01D;
  font-size: 20px;
  font-weight: 600;
  
}

.btn-principal {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #F4A01D;
  border-radius: 50px;
  transition: 0.4s;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Poppins', 'sans-serif';
}

.btn-principal:hover {
  background-color: #F4A01D;
  color: #1F345F;
  font-weight: bold;
}


/* About Section */

@media (min-width: 1024px) {
  #sobre-evento {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .contenedor-info .row {
    justify-content: center;
    text-align: center;
  }

  .contenedor-info .col-lg-6 {
    max-width: 600px;
  }

  .texto-justificado {
    text-align: justify; 
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .contenedor-info .col-lg-6 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .titulo-secundario,
  .texto-justificado {
    margin-left: 0;
  }
}

#sobre-evento {
  background: url("../IMG/inicio2.webp") no-repeat center center/cover;
  color: #fff;
  position: relative;
  padding: 60px 0 40px 0;
  overflow: hidden;
}

#sobre-evento::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 20, 41, 0.8);
  
}

.bloque-texto {
  padding-left: 20px;
  padding-right: 20px;
}



.contenedor-info {
  position: relative;
  z-index: 1;
}

.titulo-secundario {
  font-size: 20px;
  font-weight: bold;
  color: #F4A01D;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.texto-justificado {
  font-size: 14px;
  text-align: justify;
  color: #fff;
  margin-bottom: 20px;
}


/* ======================================  
   =            TEMATICOS               =
   ====================================== */
#tematicos {
  padding: 60px 20px; 
  background-color: #F6F7FC;
}

#tematicos h2{
  font-weight: bold;
  color: #F4A01D;
  font-size: 2.5rem;
}

.contenedor-temas {
  max-width: 1200px;
  margin: 0 auto;
}

.encabezado-temas {
  text-align: center;
  margin-bottom: 40px;
}

.encabezado-temas h2 {
  font-size: 28px;
  font-weight: bold;
}

.encabezado-temas p {
  font-size: 18px;
  margin-bottom: 15px;
}

.linea-centro {
  width: 80px;
  height: 6px;
  background-color: #1F345F;
  margin: 0 auto;
  border-radius: 4px;
}

.tema-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.tema-card img {
  width: 100%;        
  height: 250px;      
  object-fit: cover;  
  display: block;
}

.tema-detalles {
  background: rgba(6, 12, 34, 0.76);
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  text-align: center;
  padding-top: 10px;
  transition: all 300ms ease-in-out;
}

.tema-detalles h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.tema-detalles p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  font-style: italic;
}

.redes-sociales {
  height: 40px;
}

.redes-sociales i {
  margin: 0 4px;
  font-size: 16px;
  color: #F4A01D;
}

.tema-detalles a {
  color: #fff;
  text-decoration: none;
}

.tema-detalles a:hover {
  color: #F4A01D;
}

.tema-card:hover .tema-detalles {
  bottom: 0;
}



/*--------------------------------------------------------------
# cronograma Section
--------------------------------------------------------------*/
#cronograma {
  padding: 60px 0 60px 0;
  background-color: white;
}
#cronograma .section-header {
  text-align: center;
  margin-bottom: 40px;
}

#cronograma h2 {
  font-weight: bold;
  color: #F4A01D;
  font-size: 2.5rem;
  text-align: center;
}

#cronograma .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

#cronograma .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

#cronograma .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: #0e1b4d;
  color: #fff;
  padding: 10px 100px;
  text-decoration: none;
}

@media (max-width: 991px) {
  #cronograma .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 767px) {
  #cronograma .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 480px) {
  #cronograma .nav-tabs a {
    padding: 8px 30px;
  }
}

#cronograma .nav-tabs a.active {
  background-color: #F4A01D;
  color: #fff;
  text-decoration: none;
}

#schudule .nav-link {
  text-decoration: none;
}

#cronograma .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
  #cronograma .sub-heading {
    width: 75%;
  }
}

#cronograma .tab-pane {
  transition: ease-in-out 0.2s;
}

#cronograma .cronograma-item {
  border-bottom: 1px solid #cad4f6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

#cronograma .cronograma-item:hover {
  background-color: #fff;
}

#cronograma .cronograma-item time {
  padding-bottom: 5px;
  display: inline-block;
}

#cronograma .cronograma-item .crono-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}

#cronograma .cronograma-item .crono-img img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

#cronograma .cronograma-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #112363;
}

#cronograma p {
  font-style: italic;
  color: #152b79;
}

#cronograma .cronograma-item p {
  font-style: italic;
  color: #152b79;
  margin-bottom: 0;
}


.nav-tabs {
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
  border-bottom: none;
}

.nav-link-crono {
  position: relative;
  padding: 10px 20px;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}

.nav-link-crono.active::after {
  content: '';
  position: absolute;
  bottom: -21px; 
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background-color: #F4A01D; 
  z-index: 10;
}



.tab-content > .tab-pane {
  border-left: 1px solid #F4A01D;
  border-top: 1px solid #F4A01D;
  border-radius: 10px 10px 0 0;
  padding: 20px;
  position: relative;
  background-color: #fff;
  transition: all 0.3s ease;
}


.tab-pane {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*--------------------------------------------------------------
# CONTACTO DIRECTO
--------------------------------------------------------------*/

#contacto-directo {
  padding: 60px 0;
  background: linear-gradient(135deg, #002244, #005288);
}

#contacto-directo h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

#contacto-directo p{
  font-style: italic;
  color: #F4A01D;
  text-align: center;
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# GALERIA DE ACTIVIDADES
--------------------------------------------------------------*/
#galeria {
  padding: 60px 0;
}
#galeria h2 {
  color: #F4A01D;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

#galeria .container-fluid {
  margin-bottom: 3px;
}

#galeria .galeria-actividad-container {
  padding-right: 12px;
}

#galeria .galeria-actividad {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

#galeria .galeria-actividad img {
  transition: all ease-in-out 0.4s;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

#galeria .galeria-actividad:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
#auspiciador {
  padding: 60px 0;
  background: #F6F7FC;
}

#auspiciador h2 {
  color: #F4A01D;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

#auspiciador .auspiciador-wrap {
  border-top: 1px solid #e0e5fa;
  border-left: 1px solid #e0e5fa;
  margin-bottom: 30px;
}

#auspiciador .auspi-img {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e0e5fa;
  border-bottom: 1px solid #e0e5fa;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  height: 200px;
}

#auspiciador .auspi-img:hover img {
  transform: scale(1.2);
}

#auspiciador img {
  transition: all 0.4s ease-in-out;
}



/*semi-contacto SECTION*/

#semi-contacto {
  padding: 60px 0;
  background: linear-gradient(135deg, #002244, #005288);
}

#semi-contacto h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

#semi-contacto p{
  font-style: italic;
  color: #F4A01D;
  text-align: center;
  margin-bottom: 30px;
}

#semi-contacto .semi-contacto-info {
  margin-bottom: 20px;
  text-align: center;
}

#semi-contacto .semi-contacto-info img {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
}

#semi-contacto .semi-contacto-info address,
#semi-contacto .semi-contacto-info p {
  margin-bottom: 0;
  color: white;
}

#semi-contacto .semi-contacto-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

#semi-contacto .semi-contacto-info a {
  color: white;
  text-decoration: none;
}

#semi-contacto .semi-contacto-info a:hover {
  color: #F4A01D;
}

#semi-contacto .semi-contacto-address,
#semi-contacto .semi-contacto-phone,
#semi-contacto .semi-contacto-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #semi-contacto .semi-contacto-address,
  #semi-contacto .semi-contacto-phone,
  #semi-contacto .semi-contacto-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #semi-contacto .semi-contacto-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

.form-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5px 20px;
    }

    .form-container {
      padding: 40px;
      background-color: #fff;
      border-radius: 12px;
      max-width: 1000px;
      width: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    #formContent,
    .mensaje-exito {
      width: 100%;
    }

    #formContent {
      display: block;
      width: 100%;
    }

    .form-container h2 {
      color: #1F345F;
      margin-bottom: 10px;
    }

    .form-container p {
      margin-bottom: 30px;
      color: #555;
    }

    form {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .input-group {
      flex: 1 1 45%;
      position: relative;
    }

    .input-group.full {
      flex: 1 1 100%;
    }

    input, textarea {
      width: 100%;
      padding: 10px 5px;
      font-size: 1rem;
      border: none;
      border-bottom: 2px solid #ccc;
      background: none;
      outline: none;
      transition: 0.3s;
    }

    input:focus, textarea:focus {
      border-bottom: 2px solid #1F345F;
    }

    label {
      position: absolute;
      left: 5px;
      top: 10px;
      font-size: 0.9rem;
      color: #aaa;
      pointer-events: none;
      transition: 0.3s ease;
    }

    input:focus + label,
    input:not(:placeholder-shown) + label,
    textarea:focus + label,
    textarea:not(:placeholder-shown) + label {
      top: -15px;
      font-size: 0.8rem;
      color: #1F345F;
    }

    .submit-btn {
      margin: 30px auto 0;
      display: block;
      padding: 12px 30px;
      background-color: #1F345F;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .submit-btn:hover {
      background-color: #F4A01D;
      transform: scale(1.15);
    }

    .modal-exito {
      display: none; /* Oculto por defecto */
      position: fixed;
      z-index: 99999;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.45);
      justify-content: center;
      align-items: center;
    }

    .modal-exito-content {
      background: #fff;
      margin: auto;
      padding: 30px 30px 20px 30px;
      border-radius: 14px;
      max-width: 400px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
      position: relative;
      animation: fadeUP 0.5s;
    }

    .modal-exito-close {
      position: absolute;
      top: 10px;
      right: 18px;
      font-size: 2rem;
      color: #888;
      cursor: pointer;
      font-weight: bold;
      transition: color 0.2s;
    }
    .modal-exito-close:hover {
      color: #1F345F;
    }

    .titulo-exito {
      color: #28a745;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .parrafo-exito {
      color: #1F345F;
      margin-bottom: 0;
    }


/* ==== BOTÓN WHATSAPP ANIMADO ==== */
.btn-whatsapp { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  text-decoration: none;
  margin-top: 10px;
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
}

/* Animación del botón */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* ======================================  
   =            FOOTER                  =
   ====================================== */

   .footer-main {
  position: relative;
  background-image: url('/IMG/nosotros_vym.webp');  
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: 15px;
  padding: 50px 0 20px;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 23, 40, 0.952); 
  z-index: 1;
}

.footer-main .container {
  position: relative;
  z-index: 2;
}

.footer-img {
  width: 60%;
  margin-bottom: 15px;
}

.footer-main a {
  color: #ABABAA;
  text-decoration: none;
  margin-right: 10px;
  transition: color 0.3s;
  margin-bottom: 20px;
}

.footer-main a:hover {
  color: white;
}

.footer-main i {
  color: #0b3a97;
}

.footer-1 {
  text-align: center;
  padding-right: 30px;
}

.footer-1 p{
  font-size: 19px;
  color: #ABABAA  ;
}

.footer-2 h6,
.footer-3 h6 {
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.list-unstyled li{
  color: #ABABAA;
}

.footer-servicios {
  display: flex;
  gap: 30px;
}

.servicios-columna {
  display: flex;
  flex-direction: column;
}

/* REDES SOCIALES MÁS GRANDES */
.social-icons a i {
  font-size: 35px; /* más grande */
  margin: 0 10px;
  color: #ABABAA;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a i:hover {
  transform: scale(1.1);
  color: white;
}

.footer-final {
  width: 100%;
  clear: both;
  display: block;
  text-align: center;
}

.footer-final p {
  text-align: center;
  font-size: 14px;
  margin: 5px 0;
  color: white;
}

.linea-central {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  width: 50%;
  margin: 20px auto;
}

/* Ícono de WhatsApp fijo */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 30px;
  padding: 6px 15px;
  border-radius: 50%;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
  background-color: #2c3e50;
  color: #25d366;
  transform: scale(1.15);
}

/* ======================================  
   =            MEDIA QUERIES            =
   ====================================== */


@media (min-width: 992px) {
  .navbar-brand {
    margin-right: 2rem;
  }

  .navbar-nav {
    gap: 1.5rem; 
  }
}

@media (max-width: 992px) {
  .navbar-toggler {
    display: block;
    position: relative;
    z-index: 10002;
  }

  #navbarNav {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    padding-top: 80px;
    z-index: 9998;
    overflow-y: auto;
    transition: top 0.4s ease-in-out;
  }

  #navbarNav.show {
    top: 0;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .nav-item {
    width: auto;
    text-align: center;
  }

  .nav-link,
  .contact-btn {
    color: black;
    font-size: 18px;
  }

  /* 🔵 SERVICIOS CUSTOM DROPDOWN */
  .dropdown-menu-custom {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    display: none;
    width: auto;
    max-height: 400px; /* para no ocupar toda la pantalla */
    overflow-y: auto;
    margin-top: 10px;
  }

  .servicios-dropdown.show-services .dropdown-menu-custom {
    display: block;
  }

  .servicios-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .servicio-item {
    flex-direction: row;
    justify-content: center;
    background: none;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    width: auto;
    text-align: center;
    transition: border-bottom 0.3s;
  }

  .servicio-item:hover,
  .servicio-item:focus {
    border-bottom: 2px solid #007bff; /* Solo línea azul, sin fondo amarillo */
    background-color: transparent; /* quitamos cualquier fondo */
  }

  .servicio-item img {
    display: none;
  }

  .servicio-item p {
    color: black;
    font-size: 16px;
    margin: 0;
  }
}

/* ==================================================================== */
/* SOLUCIÓN ESPECÍFICA PARA ALINEACIÓN DE CONTACTO EN TABLETS (SEMINARIO) */
/* ==================================================================== */
@media (min-width: 768px) and (max-width: 992px) {
  /*
    Forzamos a que los 3 bloques de contacto se mantengan
    en una sola línea en tablets, evitando el quiebre visual.
  */
  #semi-contacto .row.semi-contacto-info {
    flex-wrap: nowrap;
    /* Evita que los elementos salten a la siguiente línea */
  }

  /* Hacemos los elementos un poco más compactos */
  #semi-contacto .semi-contacto-info h3 {
    font-size: 16px;
    /* Hacemos el título un poco más pequeño */
  }

  #semi-contacto .semi-contacto-info address,
  #semi-contacto .semi-contacto-info p {
    font-size: 14px;
    /* Y también el texto, para que no ocupe tanto espacio */
  }
}



