/* =========================================================
MENTORIA 2026
Hospital Dr. Adolfo Bezerra de Menezes
========================================================= */


/* =========================================================
RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;

    color: #13233b;

    background: #ffffff;

    overflow-x: hidden;

    line-height: 1.6;
}


.container {
    width: 90%;

    max-width: 1240px;

    margin: 0 auto;
}



/* =========================================================
SEÇÃO PRINCIPAL
========================================================= */

.mentoria-section {

    min-height: calc(100vh - 100px);

    display: flex;

    align-items: center;

    padding: 80px 0;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
}



/* =========================================================
CARD PRINCIPAL
========================================================= */

.mentoria-card {

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding: 50px 55px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 24px;

    box-shadow:
        0 15px 40px rgba(19, 35, 59, 0.08);
}



/* =========================================================
CABEÇALHO
========================================================= */

.mentoria-header {

    padding-bottom: 28px;

    margin-bottom: 30px;

    border-bottom: 1px solid #e8eef2;
}


.mentoria-header span {

    display: inline-block;

    margin-bottom: 12px;

    color: #00ab98;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.mentoria-header h1 {

    color: #13233b;

    font-size: 34px;

    font-weight: 800;

    line-height: 1.25;
}



/* =========================================================
INFORMAÇÕES
========================================================= */

.mentoria-informacoes {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 28px 45px;
}


.informacao {

    padding-bottom: 5px;
}


.informacao h2 {

    margin-bottom: 5px;

    color: #13233b;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.4;
}


.informacao p {

    color: #64748b;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.7;
}



/* =========================================================
CONTATO
========================================================= */

.informacao.contato {

    grid-column: 1 / -1;

    padding-top: 8px;

    padding-bottom: 5px;

    border-top: 1px solid #edf1f4;
}


.informacao.contato h2 {

    margin-top: 20px;

    margin-bottom: 8px;
}


.informacao.contato p {

    margin-bottom: 2px;
}


.informacao a {

    color: #7377c9;

    text-decoration: none;

    transition: color .2s ease;
}


.informacao a:hover {

    color: #00ab98;

    text-decoration: underline;
}



/* =========================================================
BOTÃO PDF
========================================================= */

.mentoria-documento {

    margin-top: 35px;

    padding-top: 28px;

    border-top: 1px solid #e8eef2;
}


.btn-pdf {

    width: 100%;

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 12px 20px;

    background: #00ab98;

    color: #ffffff;

    border-radius: 12px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.btn-pdf:hover {

    background: #008f7f;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 171, 152, 0.22);
}



/* =========================================================
ÍCONE PDF
========================================================= */

.pdf-icone {

    width: 38px;

    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, 0.16);

    border-radius: 8px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .5px;
}


.pdf-seta {

    font-size: 22px;

    transition: transform .2s ease;
}


.btn-pdf:hover .pdf-seta {

    transform: translateX(4px);
}



/* =========================================================
RESPONSIVIDADE
========================================================= */

@media (max-width: 900px) {

    .mentoria-section {

        padding: 60px 0;

    }


    .mentoria-card {

        padding: 40px;

    }

}



@media (max-width: 700px) {

    .mentoria-informacoes {

        grid-template-columns: 1fr;

        gap: 22px;

    }


    .informacao.contato {

        grid-column: auto;

    }


    .mentoria-header h1 {

        font-size: 29px;

    }


    .mentoria-card {

        padding: 32px 28px;

        border-radius: 20px;

    }

}



@media (max-width: 500px) {

    .mentoria-section {

        padding: 40px 0;

    }


    .mentoria-card {

        padding: 28px 22px;

    }


    .mentoria-header {

        padding-bottom: 22px;

        margin-bottom: 24px;

    }


    .mentoria-header span {

        font-size: 10px;

        letter-spacing: 1.5px;

    }


    .mentoria-header h1 {

        font-size: 25px;

    }


    .informacao h2 {

        font-size: 16px;

    }


    .informacao p {

        font-size: 14px;

    }


    .btn-pdf {

        font-size: 13px;

        padding: 10px 14px;

    }


    .pdf-icone {

        width: 34px;

        height: 34px;

        min-width: 34px;

    }

}