.hero {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.caption-hero {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    padding: 1rem 2rem;
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 10px;
}

.caption-hero h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.caption-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 768px) {
    .caption-hero {
        left: 5%;
        max-width: 80%;
    }

    .caption-hero h1 {
        font-size: 2rem;
    }

    .caption-hero p {
        font-size: 1rem;
    }

    .imagen-marca {
        width: 90px;
    }
}
