/* VARIABLES */
:root {
  --azul: #1F5A92;
  --rojo: #C0392B;
  --blanco: #FFFFFF;
  --gris: #F5F5F5;
  --texto: #333333;
}

/* BASE */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #eef2f7, #ffffff);
  color: var(--texto);
}

/* HEADER */
.header {
  background: var(--blanco);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container-header {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 80px;
}

.titulo {
  max-width: 600px;
}

.titulo h1 {
  margin: 0;
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--azul);
}

.titulo p {
  margin: 0;
  font-size: 13px;
}

.bandera {
  height: 4px;
  background: linear-gradient(to right, var(--azul), white, var(--rojo));
}

/* BOTÓN MAPA */
.btn-mapa {
  margin-left: auto;
  background: var(--azul);
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
}

/* SECCIÓN */
.agenda {
  padding: 60px 20px;
  text-align: center;
}

/* TITULO MEJORADO */
.titulo-seccion {
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--azul);
  margin-bottom: 40px;
  text-align: center;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARDS */
.card {
  border-radius: 20px;
  padding: 25px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* OVERLAY */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* TEXTO */
.card h4,
.card h3,
.card p,
.idiomas {
  position: relative;
  z-index: 2;
}

.card h4 {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

.card h3 {
  margin: 5px 0;
  font-size: 20px;
}

.card p {
  font-size: 14px;
}

/* BOTONES IDIOMA */
.idiomas {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-idioma {
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.btn-idioma.es {
  background: var(--azul);
}

.btn-idioma.en {
  background: var(--rojo);
}

.btn-idioma:hover {
  transform: scale(1.05);
}

/* IMÁGENES */
.card-img1 { background: url("img/conito2.jpeg") center/cover; }
.card-img2 { background: url("img/sombrero.jpeg") center/cover; }
.card-img3 { background: url("img/pilon.jpeg") center/cover; }
.card-img4 { background: url("img/pedazo_de_acordeon.jpeg") center/cover; }
.card-img5 { background: url("img/pilonera.jpeg") center/cover; }
.card-img6 { background: url("img/conito3.jpeg") center/cover; }

/* RESPONSIVE */
@media (max-width: 768px) {

  .container-header {
    flex-direction: column;
    text-align: center;
  }

  .btn-mapa {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .card {
    min-height: 180px;
  }
}

@media (max-width: 500px) {
  .agenda {
    padding: 40px 15px;
  }

  .card {
    padding: 20px;
  }
}