#price {
  position: relative;
  /* Tamaños exactos de tu sección favorita */
  min-height: 50vh; 
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
  /* Evita que la foto con position:fixed se desborde de esta sección */
  clip-path: inset(0 0 0 0); 
}

/* Aquí es donde metemos el POSITION FIXED real */
#price::before {
  content: "";
  position: fixed; /* Posición fija real para congelar la foto */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  
  /* Imagen original LIMPIA (sin el degradado oscuro de antes) */
  background: url(../img/photo1jpg.jpg) no-repeat center center;
  background-size: cover;
  
  z-index: -1; /* Se queda detrás de tus textos */
}

#price .texto-price {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
}

#price .texto-price h2 {
  color: #f3e8c9;
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* --- AJUSTES ESPECÍFICOS PARA MÓVILES (Con tamaños reducidos) --- */
@media (max-width: 768px) {
  #price {
    /* El contenedor reduce su tamaño exactamente a 35vh en el móvil */
    min-height: 35vh;
    padding: 3rem 1.5rem;
  }

  #price .texto-price h2 {
    font-size: 2.5rem; 
  }
}
