.section-recetas {
    padding-bottom: 77px;

    .row-primary {
        display: flex;
        align-items: center;

        @media (max-width: 768px) {
            flex-direction: column-reverse;
        }

        .title {
            color: #000;
            font-family: Cormorant;
            font-size: 60px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 24px;

            @media (max-width: 768px) {
                margin-top: 24px;
            }

            * {
                color: #000;
                font-family: Cormorant;
                font-size: 60px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                margin: 0;
            }
        }

        .text {
            color: #404040;
            font-family: Cormorant;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 28.8px;

            /* 160% */
            * {
                color: #404040;
                font-family: Cormorant;
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 28.8px;
                /* 160% */
            }
        }

        .image {
            img {
                max-width: 50vw;
                min-width: 50vw;
                height: auto;

                @media (max-width: 768px) {
                    max-width: 100vw;
                }
            }
        }
    }

    .filtro_recetas {
        margin: 32px 0;
    }

    .momentos_filtro_container {
        display: flex;
        align-items: center;

        .title_filtro {
            margin-right: 16px;
            padding: 8px;
            color: #000;

            font-family: Cormorant;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin: 0;
        }

        .botones {
            display: flex;
            gap: 8px;
            align-items: center;
            overflow-x: auto;

            button {
                background: transparent;
                padding: 8px;
                color: #272727;
                font-family: Cormorant;
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                border: 0;
                min-width: fit-content;
                cursor: pointer;
                transition: .3 ease all;

            }
            button:hover {
                background: #F7F7F8;
            }

            button.seleccionado {
                border: 1px solid #272727;
                background: #F7F7F8;
                position: relative;
                padding-right: 16px;
            }

            button.seleccionado::after {
                content: "";
                width: 5.657px;
                height: 5.657px;
                position: absolute;
                top: 9px;
                right: 6px;
                background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M1.17134%206.82867L6.82867%201.17134M6.82867%206.82867L1.17134%201.17134%22%20stroke%3D%22%23272727%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E');
                background-repeat: no-repeat;
                background-size: contain;
            }
        }
    }

    .resultado_recetas {
        display: flex;
        gap: 24px;
        justify-content: flex-start;
        flex-wrap: wrap;

        @media (max-width: 768px) {
            justify-content: center;
        }

        .receta {
            max-width: 356px;
            width: 100%;

            .imagen-destacada {
                margin-bottom: 16px;

                img {
                    width: 100%;
                }
            }

            .informacion-receta {
                h2 {
                    color: #272727;
                    font-family: Cormorant;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: normal;
                    margin: 0;
                    margin-bottom: 8px;
                }

                .resumen {
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    div {
                        color: #272727;
                        font-family: Cormorant;
                        font-size: 18px;
                        font-style: normal;
                        font-weight: 700;
                        line-height: normal;
                    }
                }
            }
        }
    }

}

.instagram {
    display: none;
}

@media (max-width: 768px) {
    .botones::-webkit-scrollbar {
        width: 0px;
        /* Hace la barra de scroll invisible */
    }

    .botones {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: thin;
        /* Barra delgada */
        scrollbar-color: transparent transparent;
        /* Colores transparentes */
    }
}