.hero-container{
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000000;
    display: flex;
    justify-content: center;
}

.hero-container img{
    width: 100%;
    max-height: 100vh;
    height: auto;
}

.hero-text{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 85%;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.9);
}

.hero-text h1{
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-text p{
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.imagen-bg {
    background-color: hsl(224, 71%, 86%);
    padding: 20px 0 30px;
}

