﻿/* ==========================================================
   MÓDULO: BANNER PRINCIPAL – DataTur5Beta
   Responsabilidad: banner hero con imagen + texto centrado
   Nota: blindado contra reglas globales con !important
   ========================================================== */

/* Contenedor del banner */
.banner-principal {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px; /* opcional: se ve más fino */
}

/* Imagen del banner */
.banner-principal img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

/* Caja de texto sobre el banner */
.banner-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;

  /* Legibilidad */
  color: #fff !important; /* blindaje */
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  background-color: rgba(0,0,0,0.4);

  padding: 10px 30px;
  border-radius: 10px;
  max-width: 90%;
}

/* Asegura que hijos hereden blanco aunque haya reglas globales */
.banner-texto,
.banner-texto * {
  color: #fff !important; /* blindaje contra tu regla global */
}

/* Título y subtítulo */
.banner-texto h1 {
  font-size: 2.5em;
  margin: 0;
}

.banner-texto p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* Responsivo */
@media screen and (max-width: 768px) {
  .banner-texto h1 { font-size: 1.8em; }
  .banner-texto p  { font-size: 1em; }
  .banner-principal img { max-height: 250px; }
}
