*{box-sizing:border-box}
:root{
 --navy:#0e3559;
 --navy2:#173f68;
 --teal:#18b8ae;
 --blue:#168ed1;
 --ink:#13243a;
 --muted:#6c7d90;
 --line:#dfe7ef;
 --bg:#f3f7fa;
 --card:#fff;
 --good:#087b6c;
}
body{
 margin:0;
 font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
 color:var(--ink);
 background:var(--bg);
}
a{text-decoration:none;color:inherit}
button,input{font:inherit}
.fp-auth-body{
 min-height:100vh;
 display:grid;
 place-items:center;
 padding:28px;
 background:
 radial-gradient(circle at 15% 10%,rgba(24,184,174,.13),transparent 28%),
 linear-gradient(135deg,#eef8f8,#f5f8fb 55%,#eef4fa);
}
.fp-auth{
 width:min(460px,100%);
 background:#fff;
 border:1px solid var(--line);
 border-radius:24px;
 box-shadow:0 20px 60px rgba(21,48,77,.12);
 padding:34px;
}
.fp-logo{
 display:flex;
 align-items:center;
 gap:12px;
 margin-bottom:28px;
}
.fp-logo-mark,.fp-mark{
 width:48px;height:48px;
 display:grid;place-items:center;
 border-radius:14px;
 color:#fff;
 font-weight:900;
 background:linear-gradient(135deg,var(--blue),var(--teal));
}
.fp-logo strong{font-size:22px}
.fp-logo small{display:block;color:var(--muted);margin-top:2px}
.fp-auth h1{font-size:28px;margin:0 0 8px}
.fp-sub{color:var(--muted);line-height:1.55;margin:0 0 24px}
.fp-field{margin-bottom:16px}
.fp-field label{
 display:block;
 font-size:13px;
 font-weight:750;
 margin-bottom:7px;
}
.fp-field input{
 width:100%;
 padding:13px 14px;
 border:1px solid #cad6e1;
 border-radius:11px;
 outline:none;
 background:#fff;
}
.fp-field input:focus{
 border-color:var(--teal);
 box-shadow:0 0 0 3px rgba(24,184,174,.10);
}
.fp-btn{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 border:0;
 border-radius:11px;
 padding:13px 18px;
 background:var(--navy);
 color:#fff;
 font-weight:800;
 cursor:pointer;
}
.fp-btn.full{width:100%}
.fp-link{
 display:block;
 text-align:center;
 margin-top:18px;
 color:#176b8f;
 font-weight:700;
}
.fp-alert{
 border-radius:11px;
 padding:12px 14px;
 margin-bottom:18px;
 line-height:1.45;
}
.fp-alert.err{background:#fff0f0;color:#9d3333}
.fp-alert.ok{background:#e9f8f4;color:#176c61}
.fp-topbar{
 height:76px;
 padding:0 5%;
 display:flex;
 align-items:center;
 justify-content:space-between;
 background:#fff;
 border-bottom:1px solid var(--line);
 position:sticky;
 top:0;
 z-index:10;
}
.fp-brand{display:flex;align-items:center;gap:11px}
.fp-brand strong{display:block;font-size:18px}
.fp-brand small{color:var(--muted)}
.fp-mark{width:42px;height:42px;border-radius:12px}
.fp-user{display:flex;align-items:center;gap:18px;font-weight:700}
.fp-user a{color:#a14343}
.fp-shell{
 max-width:1320px;
 margin:0 auto;
 padding:34px 24px 60px;
}
.fp-hello{
 display:flex;
 justify-content:space-between;
 align-items:end;
 gap:20px;
 margin-bottom:25px;
}
.fp-eyebrow{
 font-size:12px;
 font-weight:850;
 letter-spacing:.11em;
 color:#16877f;
}
.fp-hello h1{
 margin:5px 0;
 font-size:32px;
}
.fp-muted{color:var(--muted)}
.fp-student-tabs{
 display:flex;
 flex-wrap:wrap;
 gap:9px;
 margin-bottom:24px;
}
.fp-student-tab{
 padding:10px 14px;
 background:#fff;
 border:1px solid var(--line);
 border-radius:999px;
 font-weight:750;
}
.fp-student-tab.active{
 background:#e6f7f5;
 border-color:#b8e7e2;
 color:#116e67;
}
.fp-grid{
 display:grid;
 grid-template-columns:repeat(3,minmax(0,1fr));
 gap:18px;
}
.fp-card{
 background:#fff;
 border:1px solid var(--line);
 border-radius:18px;
 padding:20px;
 box-shadow:0 5px 18px rgba(25,42,70,.045);
}
.fp-card-icon{
 width:42px;height:42px;
 border-radius:12px;
 display:grid;place-items:center;
 background:#eaf6f7;
 color:#147c76;
 font-size:20px;
 margin-bottom:15px;
}
.fp-card h3{margin:0 0 7px;font-size:18px}
.fp-card p{
 margin:0;
 color:var(--muted);
 line-height:1.5;
 font-size:14px;
}
.fp-card .fp-status{
 display:inline-flex;
 margin-top:15px;
 border-radius:999px;
 padding:6px 9px;
 background:#f1f5f8;
 color:#627487;
 font-size:12px;
 font-weight:750;
}
.fp-child{
 background:linear-gradient(135deg,#12395e,#175378);
 color:#fff;
}
.fp-child p{color:#d7e7f2}
.fp-child .fp-status{
 background:rgba(255,255,255,.13);
 color:#fff;
}
@media(max-width:900px){
 .fp-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
 .fp-grid{grid-template-columns:1fr}
 .fp-topbar{padding:0 18px}
 .fp-user span{display:none}
 .fp-shell{padding:24px 16px 50px}
 .fp-hello h1{font-size:27px}
}

/* LCEDUCA_CANTINA_STYLE_05E */

.fp-canteen-online{
 display:inline-flex;
 align-items:center;
 gap:7px;
 margin:3px 0 17px;
 padding:6px 10px;
 border-radius:999px;
 background:#e8f8f4;
 color:#087b6c;
 font-size:12px;
 font-weight:800;
}

.fp-canteen-online span{
 width:7px;
 height:7px;
 border-radius:50%;
 background:#0ca68d;
}

.fp-canteen-label{
 color:#738497;
 font-size:12px;
 margin-bottom:3px;
}

.fp-canteen-balance{
 color:#123b63;
 font-size:30px;
 line-height:1.1;
 font-weight:900;
}

.fp-canteen-details{
 display:grid;
 grid-template-columns:1fr 1fr;
 gap:9px;
 margin-top:17px;
}

.fp-canteen-details > div{
 padding:10px 11px;
 border:1px solid #e1ebf1;
 border-radius:11px;
 background:#f6f9fb;
}

.fp-canteen-details small{
 display:block;
 margin-bottom:4px;
 color:#77899b;
 font-size:11px;
}

.fp-canteen-details strong{
 display:block;
 color:#173c5d;
 font-size:13px;
}

.fp-canteen-source{
 margin-top:14px;
 padding-top:11px;
 border-top:1px solid #edf1f4;
 color:#8190a0;
 font-size:11px;
}

@media(max-width:620px){
 .fp-canteen-details{
  grid-template-columns:1fr;
 }
}


/* ======================================================
   LC EDUCA - VIDA ACADEMICA PORTAL DA FAMILIA V1
   ====================================================== */

.fp-card-link{
    display:block;
    color:inherit;
    text-decoration:none;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.fp-card-link:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 34px rgba(20,44,78,.10);
    border-color:#b9d8d7;
}

.fp-status-ready{
    background:#e8f7f4;
    color:#08766f;
}

.fp-va-heading{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px;
    margin-bottom:24px;
}

.fp-va-heading h1{
    margin:5px 0 7px;
}

.fp-va-back{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:9px 14px;
    border:1px solid #dbe5ed;
    border-radius:10px;
    background:#fff;
    color:#17385a;
    text-decoration:none;
    font-weight:750;
    white-space:nowrap;
}

.fp-va-student{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:20px 22px;
    margin:18px 0;
    border:1px solid #e0e9ef;
    border-radius:16px;
    background:#fff;
}

.fp-va-student small{
    display:block;
    color:#0b8c89;
    font-size:11px;
    font-weight:850;
    letter-spacing:.09em;
}

.fp-va-student h2{
    margin:4px 0;
    color:#153454;
}

.fp-va-student p{
    margin:0;
    color:#718096;
}

.fp-va-summary{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
    margin-bottom:22px;
}

.fp-va-stat{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px;
    border:1px solid #e1e9ef;
    border-radius:15px;
    background:#fff;
}

.fp-va-stat>span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    border-radius:13px;
    background:#f0f8f7;
    font-size:21px;
}

.fp-va-stat strong{
    display:block;
    color:#143453;
    font-size:25px;
    line-height:1;
}

.fp-va-stat small{
    display:block;
    margin-top:5px;
    color:#748395;
    font-size:12px;
}

.fp-va-tabs{
    display:flex;
    gap:8px;
    margin-bottom:16px;
    border-bottom:1px solid #e1e8ee;
}

.fp-va-tab{
    appearance:none;
    border:0;
    border-bottom:3px solid transparent;
    background:transparent;
    color:#64758a;
    padding:12px 15px;
    font:inherit;
    font-weight:750;
    cursor:pointer;
}

.fp-va-tab.active{
    color:#087f7a;
    border-bottom-color:#0a9d96;
}

.fp-va-panel{
    display:none;
}

.fp-va-panel.active{
    display:block;
}

.fp-va-section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:20px 0 14px;
}

.fp-va-section-title small{
    color:#0a918b;
    font-size:11px;
    font-weight:850;
    letter-spacing:.08em;
}

.fp-va-section-title h2{
    margin:4px 0 0;
    color:#163653;
}

.fp-va-list{
    display:grid;
    gap:12px;
}

.fp-va-assessment{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:19px 20px;
    border:1px solid #e0e9ef;
    border-radius:15px;
    background:#fff;
}

.fp-va-assessment h3{
    margin:5px 0 8px;
    color:#173654;
}

.fp-va-subject{
    color:#0b8d87;
    font-size:12px;
    font-weight:800;
}

.fp-va-meta{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
}

.fp-va-meta span{
    padding:5px 8px;
    border-radius:7px;
    background:#f4f7fa;
    color:#6b7a8c;
    font-size:11px;
}

.fp-va-score{
    min-width:95px;
    text-align:center;
    padding:12px 14px;
    border-radius:13px;
    background:#eff9f7;
}

.fp-va-score small,
.fp-va-score span{
    display:block;
    color:#65817f;
    font-size:10px;
}

.fp-va-score strong{
    display:block;
    margin:3px 0;
    color:#087d76;
    font-size:26px;
}

.fp-va-empty{
    padding:42px 24px;
    border:1px dashed #d4e0e7;
    border-radius:16px;
    background:#fff;
    text-align:center;
}

.fp-va-empty>div{
    font-size:30px;
}

.fp-va-empty h3{
    margin:10px 0 5px;
    color:#173653;
}

.fp-va-empty p{
    margin:0;
    color:#718096;
}

.fp-va-timeline{
    display:grid;
    gap:13px;
}

.fp-va-content{
    display:grid;
    grid-template-columns:65px minmax(0,1fr);
    gap:16px;
    padding:19px;
    border:1px solid #e0e9ef;
    border-radius:15px;
    background:#fff;
}

.fp-va-date{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:65px;
    border-radius:13px;
    background:#f0f8f7;
}

.fp-va-date strong{
    color:#087e78;
    font-size:22px;
}

.fp-va-date span{
    color:#6b7f7d;
    font-size:10px;
    font-weight:800;
}

.fp-va-content-body h3{
    margin:5px 0 9px;
    color:#173653;
}

.fp-va-objective{
    margin:12px 0;
    padding:12px 14px;
    border-radius:10px;
    background:#f7fafc;
}

.fp-va-objective small{
    color:#6a7a8c;
    font-size:10px;
    font-weight:850;
}

.fp-va-objective p{
    margin:5px 0 0;
    color:#43566b;
    line-height:1.55;
}

.fp-va-content details{
    margin-top:10px;
}

.fp-va-content summary{
    color:#087f79;
    font-weight:750;
    cursor:pointer;
}

.fp-va-content-text{
    margin-top:12px;
    padding:14px;
    border-radius:10px;
    background:#f7f9fb;
    color:#43566a;
    line-height:1.6;
}

@media(max-width:720px){

    .fp-va-heading{
        flex-direction:column;
    }

    .fp-va-summary{
        grid-template-columns:1fr;
    }

    .fp-va-student{
        align-items:flex-start;
        flex-direction:column;
    }

    .fp-va-assessment{
        align-items:flex-start;
        flex-direction:column;
    }

    .fp-va-score{
        width:100%;
        box-sizing:border-box;
    }

    .fp-va-content{
        grid-template-columns:52px minmax(0,1fr);
        padding:14px;
    }

    .fp-va-tabs{
        overflow-x:auto;
    }

    .fp-va-tab{
        white-space:nowrap;
    }
}

/* ======================================================
   LC EDUCA - BOLETIM ESCOLAR / PORTAL DA FAMILIA
   ====================================================== */

.fp-report-note{
    margin-bottom:16px;
    padding:13px 15px;
    border:1px solid #dce8ed;
    border-radius:11px;
    background:#f7fafb;
    color:#617486;
    font-size:13px;
    line-height:1.55;
}

.fp-report-wrap{
    width:100%;
    overflow-x:auto;
    border:1px solid #dfe8ee;
    border-radius:15px;
    background:#fff;
}

.fp-report-table{
    width:100%;
    min-width:780px;
    border-collapse:collapse;
}

.fp-report-table th,
.fp-report-table td{
    padding:15px 14px;
    border-bottom:1px solid #e7edf1;
    text-align:center;
}

.fp-report-table thead th{
    background:#f6f9fb;
    color:#607287;
    font-size:11px;
    font-weight:850;
    letter-spacing:.025em;
    text-transform:uppercase;
}

.fp-report-table thead th:first-child{
    text-align:left;
}

.fp-report-table tbody th{
    width:30%;
    color:#183956;
    text-align:left;
    font-size:13px;
    font-weight:800;
}

.fp-report-table tbody tr:last-child th,
.fp-report-table tbody tr:last-child td{
    border-bottom:0;
}

.fp-report-table tbody tr:hover{
    background:#fbfdfd;
}

.fp-report-value{
    color:#087c76;
    font-weight:850;
}

.fp-report-partial{
    background:#f0f9f7;
    color:#087c76;
    font-weight:900;
}

.fp-report-empty{
    color:#a2adb8;
}

.fp-report-footnote{
    margin:13px 2px 0;
    color:#778697;
    font-size:11px;
    line-height:1.55;
}

@media(max-width:720px){

    .fp-report-table th,
    .fp-report-table td{
        padding:12px 10px;
    }

    .fp-report-wrap{
        border-radius:12px;
    }
}
