@import url("/css/main.css");

body {
    background-color: #f5f5f5;
}

.main-banner {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url(/assets/img/img-content/encabezado.png) center bottom no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner-title {
    font-size: 18px;
    color: white;
}
.coffee-group {
    background: white;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 2px 2px 7px #8989892d;
}

.media-wrapper {
    position: relative;
    background-color: #f5f5f5;
}

.coffee-info-title {
    font-size: 18px;
    padding: 10px;
}

.coffee-info-description {
    margin-top: 10px;
    padding: 10px;
}

.coffee-info-list {
    list-style-type: none;
    padding-left: 40px;
    font-size: 14px;
}

.coffee-info-list li {
    position: relative;
    padding-left: 40px;
}

.coffee-info-list li::before {
    content: "☕";
    font-size: 1.5em; /* Tamaño de la viñeta */
    position: absolute;
    left: 0; /* Ubicar la viñeta en la misma posición para cada elemento */
    top: 0; /* Alinear verticalmente la viñeta */
    display: inline-block; /* Asegura que ::before se muestre correctamente */
}

.slider-container {
    margin: 30px;
}

.slider-buttons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 200px;
    width: 100%;
}

@media (min-width: 720px) {
    .main-banner {
        height: 300px;
    }

    .main-banner-title {
        font-size: 40px;
    }

    .coffee-group {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    .media-wrapper {
        width: 800px;
    }

    .slider-buttons {
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 350px;
        width: 100%;
    }
}

@media (min-width: 1440px) {
    .main-banner {
        height: 550px;
        width: 100vw;
    }

    .main-banner-title {
        font-size: 55px;
    }

    .coffee-group {
        display: flex;
        gap: 80px;
        padding-left: 50px;
        width: 90%;
        border-radius: 10px;
        margin: 40px;
        align-items: center;
    }

    .media-wrapper {
        width: 1300px;
    }

    .coffee-info-title {
        font-size: 30px;
    }

    .coffee-info-description {
        font-size: 20px;
    }

    .coffee-info-list {
        font-size: 17px;
    }

    .slider-buttons {
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 200px;
        width: 100%;
    }
}
