/* Importar fuente elegante 
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');*/

@font-face {
  font-family: 'Playfair_Display';
  src: url('../../fuentes/Playfair_Display/static/PlayfairDisplay-Regular.ttf');
}

/* ==========================================
    CONTENEDOR PRINCIPAL (Fogata)
   ========================================== */
.bg {
  width: 100%;
  height: 50vh; /* Mitad de la altura visible */
  position: relative;
  overflow: hidden; /* Evita chispas o sombras fuera del área */
  background-image: url("../imagenes/secciones/fire2.jpg"); /* 🔥 agrega esta línea */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ==========================================
    CAPA DE PARTÍCULAS
   ========================================== */
.particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particles canvas {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
}

/* ==========================================
  TEXTO CENTRAL (FRASE)
   ========================================== */
.texto-fogata {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 700px;
  font-family: 'Playfair_Display', serif;
  font-size: 2.0rem;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  z-index: 5;
  padding: 1rem;
  overflow-wrap: break-word; /* evita que las palabras largas rompan el diseño */
}

.texto-fogata strong{
  font-family: 'Playfair_Display';
  color: #daa520;
}

/* ==========================================
  MINIATURAS DE FONDO (opcional)
   ========================================== 
.bg_select {
  position: absolute;
  width: 150px;
  bottom: 5%;
  height: 22px;
  display: flex;
  justify-content: space-between;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 4;
}*/
/* 
.bg_select_img {
  height: 100%;
  width: 45%;
  border: 2px solid #fff;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.bg_select_img:hover {
  box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.9);
}
   */

/* ==========================================
  🔹 AJUSTES MÓVILES 🔹
   ========================================== */
@media (max-width: 768px) {
  .bg {
    height: 55vh; /* un poco más alta para que se aprecie mejor */
  }

  .texto-fogata {
    font-size: 1.5rem;      /* reduce tamaño de fuente */
    width: 90%;           /* más margen lateral */
    line-height: 1.5;
    padding: 0.8rem;
  }

  .bg_select {
    width: 120px;
    bottom: 6%;
  }
}

/* ==========================================
  🔹 SEGURIDAD CONTRA DESBORDAMIENTOS 🔹
   ========================================== */
/*html, body {
  overflow-x: hidden;  evita desplazamiento lateral 
}*/
