
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #212121;
  color: #ffffff;
  line-height: 1.6;
}
header {
  text-align: center;
  padding: 2rem 1rem 1rem;
}
header img {
  max-width: 300px;
  height: auto;
}
h1 {
  font-size: 2rem;
  margin-top: 0.5rem;
  color: #ffffff;
}
.subtitulo {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
}
section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}
h2 {
  border-bottom: 1px solid #555;
  padding-bottom: 0.3rem;
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #ffcc66;
}
h3 {
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  color: #ffcc66;
}
ul {
  padding-left: 1.2rem;
}
a {
  color: #66b2ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.redes {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.redes a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}
.redes a:hover {
  transform: scale(1.2);
  color: #e81e4d;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  padding-bottom: 2rem;
}
.contenedor-servicios {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1rem;
}
.servicio {
  flex: 1;
  min-width: 240px;
  text-align: center;
  background-color: #303030;
  padding: 1rem;
  border-radius: 8px;
}
.servicio i {
  font-size: 2rem;
  color: #a8e6cf;
}
.justificado {
  text-align: justify;
}
.servicio h3 {
  color: #a8e6cf; /* O el color que desees para los títulos de cada servicio */
}
.enlace-emision {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}

.enlace-emision:hover {
  color: #e81e4d;
  text-decoration: underline;
}
.cartel-mes {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url('.imgs/imgmes.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.franja-texto {
  position: absolute;
  bottom: 0;
  width: 100%;
   background-color: rgba(0, 0, 0, 0.75); /* negro semitransparente */
  padding: 1rem;
  text-align: center;
}

.texto-cartel {
  color: white;
  font-size: 1.5rem;
  font-style: italic; /* cursiva */
  font-weight: normal; /* opcional: más ligera que 'bold' */
  font-family: 'Segoe UI', sans-serif; /* igual que el resto del sitio */
}

/* Versión responsive */
@media (max-width: 768px) {
  .texto-cartel {
    font-size: 1.1rem;
    padding: 0.5rem;
  }

  .franja-texto {
    padding: 0.8rem;
  }
}
@media (max-width: 768px) {
  .servicio {
    flex: 1 1 100%;
  }

  .boton-mapa {
    width: 100%;
    text-align: center;
  }
}
div.cartel-mes div.franja-texto {   background-color: rgba(0, 0, 0, 0.8) !important;   background-image: none !important; }
