body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color:#F5F5DC;
   padding-top: 80px; 
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.logo {
  display: flex;
  align-items: center;
}

.circle {
  width: 30px;
  height: 30px;
  background-color: #ffefb0;
  border-radius: 50%;
  background-image: url('logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.logo h1 {
  margin: 0;
  font-size: 24px;
  color: #222;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
}

nav ul li a.active {
  color: #007999;
  font-weight: bold;
}

.linea {
  border: none;
  border-top: 2px solid #e44ba4;
  margin: 0 60px;
}

.banner {
  margin: 20px 60px;
  overflow: hidden;
  position: relative;
  /* height: 250px;   ❌ ELIMINAR ESTA LÍNEA */
}

.img-banner {
  width: 100%;
  height: auto; /* ✅ Permite que el alto se ajuste según la imagen */
  object-fit: contain; /* Cambia a 'contain' si no quieres recorte */
  display: block;
}




.contenido {
  display: flex;
  flex-wrap: wrap;
  padding: 0 60px 60px;
  gap: 40px;
}

.texto {
  flex: 1 1 300px;
  max-width: 500px;
  font-size: 13px;
  color: #333;
}

.btn-contacto {
  margin-top: 20px;
  background-color: #ffefb0;
  padding: 10px 25px;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  color: #007999;
  cursor: pointer;
}

.cuadros {
  display: flex;
  gap: 20px;
  flex: 1 1 300px;
  justify-content: center;
  flex-wrap: wrap;
}

.cuadro {
  width: 150px;
  height: 150px;
}

.azul {
  background-color: #83b3b3;
}

.amarillo {
  background-color: #ffefb0;
}

.rosa {
  background-color: #d6208f;
}
.perfil {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 60px;
  background-color: #fdfcfb;
  flex-wrap: wrap;
}

.perfil-img {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #2d2d2d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-perfil {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: white;
  border: 8px solid #2d2d2d;
  margin-bottom: 10px;
  position: relative;
}

.placeholder::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 60px;
  background-color: white;
  bottom: -40px;
  left: 0;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}

.perfil-info {
  max-width: 600px;
  color: #2d2d2d;
}

.perfil-info h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.perfil-info .intro {
  font-size: 14px;
  margin-bottom: 15px;
}

.perfil-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.btn-read {
  margin-top: 20px;
  background-color: #e0dad5;
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  color: #5d5049;
  font-size: 14px;
}
.agenda {
  text-align: center;
  padding: 60px 40px;
  background-color: #fdfcfb;
}

.agenda h2 {
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
  color: #3a2b26;
  margin-bottom: 10px;
}

.agenda p {
  font-size: 14px;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #555;
  line-height: 1.6;
}

.agenda .linea {
  width: 90px;
  margin: 20px auto;
  border: none;
  border-top: 2px solid #4ab4b3;
}

.calendario {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.calendario img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.contact-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
}

.contact-info {
  flex: 1 1 40%;
}

.contact-info h2 {
  color: #333;
  font-size: 32px;
}

.contact-info p {
  font-size: 14px;
  color: #666;
}

.contact-info strong {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  color: #000;
}

.contact-info a {
  color: #666;
  text-decoration: none;
}

.contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  border: none;
  padding: 12px;
  font-size: 14px;
  color: #000;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-weight: bold;
}

.contact-form input[name="name"] {
  background-color: #006d81;
  color: black;
}

.contact-form input[name="email"] {
  background-color: #8bb9bd;
}

.contact-form input[name="subject"],
.contact-form textarea {
  background-color: #ffe9a9;
}

.contact-form textarea {
  resize: vertical;
  height: 100px;
}

.contact-form button {
  background-color: #8bb9bd;
  border: none;
  padding: 12px 25px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  border-radius: 20px;
  cursor: pointer;
  align-self: flex-start;
}

.contact-form button:hover {
  background-color: #5fa2a7;
}


/* Header estilo personalizado */
.custom-navbar {
  background-color: #fdfcfb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 1030;
}

/* Logo círculo */
.circle {
  width: 30px;
  height: 30px;
  background-color: #ffefb0;
  border-radius: 50%;
}

/* Marca GLEZ */
.navbar-brand h1 {
  font-size: 24px;
  color: #222;
}

/* Estilo de los enlaces del nav */
.navbar-nav .nav-link {
  color: #444;
  font-size: 14px;
  margin-left: 15px;
  transition: color 0.3s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #007999;
  font-weight: bold;
}
    #calendar {
      max-width: 900px;
      margin: 0 auto;
    }

.btn-horario {
    background-color: #c5c1b5 !important;
    color: #000 !important;
    font-weight: bold;
    border: none;
    border-radius: 4px;
  }

  .btn-horario:hover {
    background-color: #b5b1a7 !important;
  }

  .btn-horario-disabled {
    background-color: #e0dfda !important;
    color: #777 !important;
    text-decoration: line-through;
    border: none;
    border-radius: 4px;
  }
  .flecha-btn {
  background-color: #181715;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.flecha-btn:hover {
  
  background-color: #a9a497; /* bloque sólido más oscuro */
  color: white; /* opcional para mejor contraste */
}
.img-cuadro {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px; /* opcional, para suavizar bordes */
}
/* Mapa de ubicación */
.mapa-local {
  width: 100%;
  max-width: 500px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cuadros {
  display: flex;
  gap: 20px;
  flex: 1 1 300px;
  justify-content: center;
  flex-wrap: wrap;
}

.cuadro {
  width: 200px;    /* aumenté de 150px a 200px */
  height: 200px;   /* aumenté de 150px a 200px */
}

.img-cuadro {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
