/* NAV BAR TRANSPARENTE Y MODERNO */
.navbar {
    background: transparent !important;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
    padding: 10px 0;
}

/* ENLACES DEL MENÚ */
.navbar-nav > li > a {
    font-size: 15px;
    font-weight: bold;
    color: #333 !important;
    padding: 12px 18px;
}

.navbar-nav > li > a:hover {
    color: #007bff !important;
}

/* LOGO */
.navbar-brand img {
    height: 38px;
}

/* MEGA MENU */
.mega-menu {
    width: 800px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.mega-menu h4 {
    margin-top: 0;
    font-size: 15px;
    font-weight: bold;
}

.mega-menu a {
    display: block;
    padding: 3px 0;
    color: #333;
}

.mega-menu a:hover {
    color: #007bff;
}

/* Dropdowns */
.dropdown-menu {
    border-radius: 6px;
}
.centrar-imagen-vertical {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Altura completa de la ventana */
}

.fondo-azul{
	background-color: #7DF3F5;
}
.titulo{color:#0033a0;font-weight:700;margin-bottom:12px;font-size:24px}
/* PALOMITA PARA LISTA */
ul.checklist {
  list-style: none;
  padding: 0;
}

ul.checklist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

ul.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007bff; /* Azul, puedes cambiarlo */
  font-weight: bold;
}
/* PALOMITA PARA LISTA */
/*CARRUSEL DE COMENTARIOS*/
  .colorEstrella{
	color:#fbbc04; 
	font-size: 30px;
}
.comentario{
	background:#fff; 
	border-radius:10px; 
	padding:20px;
	height:220px; 
	border: 1px solid black;
}

.carousel-control-prev {
  left: 0px;
}

.carousel-control-next {
  right: -20px;
}

/* MAPA RESPONSIVO*/
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 ratio */
    position: relative;
    height: 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

/* Ocultamos el fondo oscuro que trae Bootstrap 3 por defecto */
.carousel-control.left,
.carousel-control.right {
  background: none !important;
}