#s-platos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0px;
}

#content-platos {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

#carousel-platos {
    width: 100%;
}

.card-plato-tipico {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.card-plato-tipico img{
    width: 80% !important;
}

.card-plato-tipico span{
    font-size: 20px;
    color: #fff;
	font-family: "CenturyGothic-Bold";
}

#content-sabores-dulces {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

#info-sabores-dulces {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

#info-sabores-dulces img{
    width: 50%;
    border-radius: 10px;
}

.texto-sabores {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.texto-sabores h3{
    font-size: 35px;
    margin-bottom: 20px;
    color: #fff;
	font-family: "CenturyGothic-Bold";
}

.texto-sabores p{
    font-size: 25px;
    line-height: 33px;
    color: #fff;
    margin-bottom: 10px;
}







#content-cards-donde-comer {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    padding: 80px;
}

.info-card-donde-comer div{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.info-card-donde-comer h3{
	font-family: "CenturyGothic-Bold";
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.info-card-donde-comer a{
    color: #fff;
    font-size: 20px;
}

.info-card-donde-comer .btn-flecha span{
    font-size: 18px;
}

.card-donde-comer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.4s ease-in-out;
    overflow: hidden;
}

.card-donde-comer:hover {
    transform: scale(1.02); /* Efecto de ampliación suave */
}

.card-donde-comer img {
    width: 100%;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card-donde-comer:hover img {
    transform: scale(1.05); /* Zoom a la imagen */
}

.info-card-donde-comer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    gap: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.card-donde-comer:hover .info-card-donde-comer {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#content-carousel-platos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#content-donde-comer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (max-width: 1024px) {
    #s-platos {
        padding: 20px;
    }

    #content-platos {
        width: 100%;
    }

    #info-sabores-dulces {
        gap: 30px;
        flex-direction: column;
    }

    #info-sabores-dulces img {
        width: 100%;
    }

    .texto-sabores {
        width: 100%;
    }

    .texto-sabores h3 {
        font-size: 25px;
    }

    .texto-sabores p {
        font-size: 18px;
        line-height: 25px;
    }

    #content-cards-donde-comer {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .card-donde-comer .info-card-donde-comer {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        gap: 15px;
    }

    .info-card-donde-comer h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .info-card-donde-comer a {
        font-size: 18px;
    }

    .info-card-donde-comer div {
        gap: 2px;
    }

    .info-card-donde-comer .btn-flecha span {
        font-size: 16px;
    }

    .info-card-donde-comer div {
        gap: 6px;
    }
}