.hero {
    position: relative;
}

.hero__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
	object-position: top;
	filter: brightness(0.8);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.3); /* Mejora legibilidad */
}

.hero__title {
    font-size: 2rem;
	font-family: "Libre Baskerville", serif;
  	font-weight: 600;
  	font-style: normal;
    margin: 0;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: 1.1em;
    margin-top: 0.5rem;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.9);
	letter-spacing: 1px;
}
@media (min-width: 700px) {
	.hero__title {
    font-size: 2.5rem;
	}

	.hero__subtitle {
		font-size: 1.2rem;
	}
	.hero__image {
		height: 600px;
	}
}