.navbar {
      background-color: #fff;
      border: none;      
      margin-bottom: 0;
    }

    .navbar-brand img {
      height: 35px;
      transition: transform 0.2s ease;
    }

    .navbar-brand img:hover {
      transform: scale(1.05);
    }

    .navbar-nav > li > a {
      color: #2a56b8;
      font-weight: 500;
      font-size: 15px;
      padding: 18px 20px;
      transition: all 0.3s ease;
    }

    .navbar-nav > li > a:hover,
    .navbar-nav > .open > a,
    .navbar-nav > .open > a:focus {
      color: #2a56b8;
      background-color: transparent;
    }

    /* ======== DROPDOWN ======== */
    .dropdown-menu {
      border: none;
      border-radius: 8px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      padding: 10px 0;
      background-color: #fff;
      min-width: 260px; /* ancho fijo para evitar salto de línea */
    }

    .dropdown-menu > li > a {
      color: #2a56b8;
      font-size: 14px;
      padding: 10px 20px;
      transition: all 0.3s ease;
      white-space: nowrap; /* evita que se corte el texto */
	  color: #2a56b8; 
    }

    .dropdown-menu > li > a:hover {
      background-color: #D6FFFF;
      color: #2a56b8;
    }

    
	/* ======== SECCIÓN PRINCIPAL ======== */
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    background: linear-gradient(135deg, #f2f7ff 0%, #dce9ff 100%);
    flex-wrap: wrap; /* para que en móviles se acomode */
  }

  /* ======== TEXTO ======== */
  .hero-text {
    flex: 1;
    min-width: 320px;
  }

  .hero-text h1 {
    font-size: 40px;
    font-weight: 700;
    color: #0a2c70;
    margin-bottom: 10px;
    line-height: 1.2;
  }

 .stars {
    color: #f4b400;
    font-size: 18px;
    margin: 0 5px;
  }

	.fondo-imagen{
		background: url('../img/agenda-clase-de-gimnasia-ritmica2.png') no-repeat center center / cover;	
		margin: 0;
	}

  /* ======== LOGO ======== */
  .hero-logo {
    flex: 1;
    text-align: right;
    min-width: 280px;
  }

  .hero-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  }

	.map-responsive {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
}

.map-responsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

  /* ======== RESPONSIVE ======== */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
      padding: 60px 20px;
    }

    .hero-logo {
      text-align: center;
      margin-top: 30px;
    }

    .hero-text h1 {
      font-size: 32px;
    }
  }
  
  /* Minimal y limpio PRECIO */
  .titulo{color:#0033a0;font-weight:700;margin-bottom:12px;font-size:24px}
  
  .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;
}

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

/* 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 */