/* =========================================================
   CONECTA SEGURO
   Página: Para responsáveis
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f5fa;
    color: #282044;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   CORES
   ========================================================= */

:root {

    --purple: #6337d6;
    --purple-dark: #33215f;
    --purple-light: #eee9f8;
    --purple-border: #dfd5f3;

    --background: #f7f5fa;
    --white: #ffffff;

    --text: #282044;
    --text-light: #665f78;

    --green: #32945d;
    --green-light: #edf8f1;
    --green-border: #d6eadc;

    --yellow-light: #fff7e8;
    --yellow-border: #f0dfbd;

    --shadow: 0 3px 12px rgba(48, 32, 82, 0.06);

}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #e9e5ef;

}

.header-content {

    width: min(1100px, 92%);

    min-height: 72px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* Logo */

.logo-area {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}

.logo-icon {

    width: 39px;
    height: 39px;

    border-radius: 10px;

    background: var(--purple);

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    font-size: 19px;
    font-weight: bold;

}

.logo-text {

    display: flex;

    flex-direction: column;

}

.logo-text strong {

    color: var(--purple);

    font-size: 14px;

    letter-spacing: 0.4px;

}

.logo-text small {

    color: #777184;

    font-size: 8px;

    max-width: 190px;

    line-height: 1.3;

}


/* Navegação */

.main-nav {

    display: flex;

    align-items: center;

    gap: 27px;

}

.main-nav a {

    color: #625b72;

    font-size: 13px;

    font-weight: 600;

    transition: color 0.2s ease;

}

.main-nav a:hover {

    color: var(--purple);

}


/* =========================================================
   PÁGINA
   ========================================================= */

.responsaveis-page {

    width: min(1060px, 92%);

    margin: 0 auto;

    padding: 42px 0 60px;

}


/* =========================================================
   INTRO
   ========================================================= */

.intro-card {

    min-height: 190px;

    background: #eee9f8;

    border: 2px solid #843cff;

    display: flex;

    align-items: center;

    padding: 38px 40px;

    margin-bottom: 35px;

}

.intro-content {

    max-width: 650px;

}

.section-label {

    display: inline-block;

    color: var(--purple);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 6px;

}

.intro-card h1 {

    font-size: 30px;

    line-height: 1.1;

    color: var(--purple-dark);

    margin-bottom: 10px;

}

.intro-card p {

    color: #615a70;

    font-size: 13px;

    line-height: 1.6;

    max-width: 650px;

}


/* =========================================================
   TÍTULOS DAS SEÇÕES
   ========================================================= */

.section-heading {

    text-align: center;

    margin-bottom: 18px;

}

.small-title {

    color: var(--purple);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

}

.section-heading h2 {

    color: var(--purple-dark);

    font-size: 21px;

    margin-top: 2px;

}


/* =========================================================
   CARDS DE APOIO
   ========================================================= */

.support-section {

    margin-bottom: 35px;

}

.support-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

}

.support-card {

    background: #ffffff;

    border: 1px solid #e1dce9;

    border-radius: 7px;

    padding: 18px 15px 17px;

    min-height: 185px;

    box-shadow: var(--shadow);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}

.support-card:hover {

    transform: translateY(-3px);

    box-shadow: 0 7px 20px rgba(48, 32, 82, 0.10);

}

.card-icon {

    width: 35px;
    height: 35px;

    border-radius: 9px;

    background: var(--purple-light);

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 11px;

    color: var(--purple);

}

.card-icon svg {

    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;

}

.support-card h3 {

    color: var(--purple-dark);

    font-size: 13px;

    margin-bottom: 7px;

    line-height: 1.3;

}

.support-card p {

    color: #6d6777;

    font-size: 10.5px;

    line-height: 1.55;

}


/* =========================================================
   INFORMAÇÕES
   ========================================================= */

.information-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-bottom: 28px;

}

.info-card {

    border-radius: 7px;

    padding: 19px 20px;

    min-height: 230px;

    border: 1px solid;

}

.tips-card {

    background: #f0ebf8;

    border-color: #e0d6ef;

}

.warning-card {

    background: var(--green-light);

    border-color: var(--green-border);

}

.info-header {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 16px;

}

.info-icon {

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

}

.info-icon svg {

    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;

}

.tips-card .info-icon {

    color: var(--purple);

}

.warning-card .info-icon {

    color: var(--green);

}

.info-header h2 {

    font-size: 14px;

    color: var(--purple-dark);

}


/* =========================================================
   LISTA DE DICAS
   ========================================================= */

.check-list,
.alert-list {

    list-style: none;

}

.check-list li {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-bottom: 10px;

    color: #625b70;

    font-size: 10.5px;

    line-height: 1.45;

}

.check {

    flex-shrink: 0;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: var(--purple);

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 8px;

    font-weight: bold;

    margin-top: 1px;

}


/* =========================================================
   LISTA DE ALERTAS
   ========================================================= */

.alert-list li {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-bottom: 10px;

    color: #53695b;

    font-size: 10.5px;

    line-height: 1.45;

}

.alert-dot {

    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green);

    margin-top: 4px;

}


/* =========================================================
   MENSAGEM FINAL
   ========================================================= */

.final-message {

    display: flex;

    align-items: center;

    gap: 18px;

    background: #ffffff;

    border: 1px solid #e2ddea;

    border-radius: 8px;

    padding: 22px 25px;

    box-shadow: var(--shadow);

}

.final-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--purple-light);

    color: var(--purple);

    display: flex;

    align-items: center;
    justify-content: center;

}

.final-icon svg {

    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

    stroke-linecap: round;

    stroke-linejoin: round;

}

.final-message h2 {

    color: var(--purple-dark);

    font-size: 16px;

    margin-bottom: 3px;

}

.final-message p {

    color: #6d6777;

    font-size: 11px;

}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    border-top: 1px solid #e4e0e9;

    background: #ffffff;

    padding: 24px 20px;

    text-align: center;

}

.site-footer p {

    color: #777180;

    font-size: 10px;

    margin-bottom: 10px;

}

.footer-links {

    display: flex;

    justify-content: center;

    gap: 20px;

}

.footer-links a {

    color: #6b6378;

    font-size: 10px;

    transition: color 0.2s ease;

}

.footer-links a:hover {

    color: var(--purple);

}


/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

@media (max-width: 850px) {

    .header-content {

        min-height: 65px;

    }

    .main-nav {

        gap: 15px;

    }

    .main-nav a {

        font-size: 11px;

    }

    .support-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 650px) {

    .header-content {

        padding: 12px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

    }

    .main-nav {

        width: 100%;

        overflow-x: auto;

        padding-bottom: 4px;

        gap: 20px;

    }

    .main-nav a {

        white-space: nowrap;

    }

    .responsaveis-page {

        padding-top: 25px;

    }

    .intro-card {

        min-height: auto;

        padding: 28px 24px;

    }

    .intro-card h1 {

        font-size: 25px;

    }

    .intro-card p {

        font-size: 12px;

    }

    .support-grid {

        grid-template-columns: 1fr;

    }

    .support-card {

        min-height: auto;

    }

    .information-grid {

        grid-template-columns: 1fr;

    }

    .info-card {

        min-height: auto;

    }

    .final-message {

        align-items: flex-start;

        padding: 20px;

    }

    .footer-links {

        flex-wrap: wrap;

    }

}


@media (max-width: 400px) {

    .responsaveis-page {

        width: 94%;

    }

    .intro-card {

        padding: 24px 19px;

    }

    .intro-card h1 {

        font-size: 23px;

    }

    .support-card {

        padding: 16px;

    }

}