﻿:root {
    --c-grey-600: #6E6E6E;
    --c-orange: #F37053;
    --c-grey-100: #F9F9F9;
    --c-white: #FFF;
    --c-black: #000;
    --c-purple: #55489D;
    --c-grey-500: #969696;
}

body {
    font-size: 14px;
    font-family: 'allerreguler', sans-serif;
}

.lpBioetica {
    padding-top: 94px;
}

img {
    max-width: 100%;
}

p {
    margin: 0 0 16px;
    padding: 0;
    line-height: 150%;
    color: var(--c-grey-600);
    letter-spacing: 0;
}

@media(min-width:960px) {
    .lpBioetica {
        padding-top: 0;
    }
}

/* =Hero */
.lpBioetica__hero img {
    width: 100%;
}

    .lpBioetica__hero img.desktop {
        display: none;
    }

    .lpBioetica__hero img.mobile {
        display: block;
    }

@media(min-width:960px) {

    .lpBioetica__hero img.desktop {
        display: block;
    }

    .lpBioetica__hero img.mobile {
        display: none;
    }
}

/* =Menu */
.lpBioetica__menu{
    background-color:var(--c-grey-100);
}
.lpBioetica__menu .central {
    background: #FFF;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: -30px;
}

.lpBioetica__menu a {
    display: inline-block;
    padding: 18px 0;
    color: var(--c-grey-600);
    font-weight: 400;
    line-height: 150%;
    border-bottom: 1.5px solid transparent;
    width: 25%;
}

    .lpBioetica__menu a:hover {
        color: var(--c-orange);
        border-bottom: 1.5px solid var(--c-orange);
    }
/* = Sobre */
.lpBioetica__sobre {
    background: var(--c-grey-100);
    padding: 40px 0;
}

    .lpBioetica__sobre .row {
        flex-direction: column-reverse;
    }

    .lpBioetica__sobre h2 {
        font-size: 20px;
        color: var(--c-purple);
        font-weight: 700;
        line-height: 140%;
        letter-spacing: 0;
        margin: 0 0 16px;
    }


    .lpBioetica__sobre ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 16px;
        flex-direction: column;
    }

        .lpBioetica__sobre ul li {
            background: var(--c-white);
            padding: 24px 16px;
            border-radius: 8px;
        }

            .lpBioetica__sobre ul li p {
                color: var(--c-grey-500);
                line-height: 150%;
                font-weight: 400;
            }

                .lpBioetica__sobre ul li p:first-child {
                    display: flex;
                    gap: 8px;
                    font-weight: 700;
                    color: var(--c-purple);
                    line-height: 100%;
                }

    .lpBioetica__sobre .image {
        margin-top: 24px;
    }

@media(min-width:960px) {

    .lpBioetica__sobre {
        padding: 80px 0;
    }

        .lpBioetica__sobre .row {
            flex-direction: row;
        }

        .lpBioetica__sobre .image {
            margin-top: 0;
            height: 100%;
        }

        .lpBioetica__sobre h2 {
            font-size: 28px;
            line-height: 130%;
            margin-bottom: 24px;
        }

        .lpBioetica__sobre ul {
            display: grid;
            grid-template-columns: 50% 50%;
        }
}

/* = CoBioBP*/

.lpBioetica__cobiobp {
    background: var(--c-white);
    padding: 40px 0;
}

    .lpBioetica__cobiobp h2 {
        font-size: 20px;
        color: var(--c-purple);
        font-weight: 700;
        line-height: 140%;
        letter-spacing: 0;
        margin: 0 0 16px;
    }

@media(min-width:960px) {
    .lpBioetica__cobiobp {
        padding: 80px 0;
    }

        .lpBioetica__cobiobp .conteudo {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
}
/* = FAQ */
.lpBioetica__faq {
    padding: 40px 0;
    background: var(--c-grey-100);
}

    .lpBioetica__faq header {
        text-align: center;
        margin-bottom: 32px;
    }

        .lpBioetica__faq header strong {
            font-size: 12px;
            color: #F37053;
            font-weight: bold;
            margin-bottom: 8px;
            display: block;
        }

        .lpBioetica__faq header h2 {
            font-size: 24px;
            color: var(--c-purple);
            font-weight: bold;
            margin: 0 0 8px;
            display: block;
            line-height: 140%;
        }

        .lpBioetica__faq header p {
            font-size: 14px;
            color: #7A837B;
            margin: 0;
            display: block;
            line-height: 150%;
        }
    /* Style the buttons that are used to open and close the accordion panel */
    .lpBioetica__faq .accordion {
        display: flex;
        background-color: var(--c-white);
        color: #3C3C3C;
        cursor: pointer;
        padding: 11px 16px;
        width: 100%;
        text-align: left;
        border: none;
        outline: none;
        transition: 0.4s;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }

    .lpBioetica__faq .accordion.active {
        margin-bottom:0;
    }

        .lpBioetica__faq .accordion strong {
            margin-right: 16px;
        }
        /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
        .lpBioetica__faq .active, .lpBioetica__faq .accordion:hover {
            background-color: #ccc;
        }

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    margin-bottom: 24px;
}

    .panel p {
        margin: 0;
        padding: 0;
    }

.lpBioetica__marcarConsulta img {
    width: 100%;
    margin: auto;
}

    .lpBioetica__marcarConsulta img.desktop {
        display: none;
    }

    .lpBioetica__marcarConsulta img.mobile {
        display: block;
    }

@media (min-width:960px) {
    .lpBioetica__faq {
        padding: 80px 0;
    }
}
