/* MOBILE  - Planilha de Verificação */
* {
    box-sizing: border-box
}

:root {
    --pink: #ff5fa4;
    --pink-2: #ff8fc2;
    --teal: #10b8a9;
    --teal-dark: #078b7d;
    --cream: #fff7ea;
    --card: #fffefa;
    --text: #121b31;
    --muted: #667085;
    --purple: #7c4dff;
    --gold: #f6c445;
    --green: #2fc86d;
    --red: #ff5476;
    --blue: #4a90e2;
    --shadow: 0 14px 34px rgba(74, 32, 61, .14)
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Segoe UI, Arial, sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden
}

.app-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(255, 248, 235, .82), rgba(255, 248, 235, .82)), url("assets/background.png") center/cover no-repeat;
    z-index: -2
}

.mobile-app {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 12px 12px 34px
}

.app-hero {
    position: relative;
    min-height: 560px;
    border-radius: 34px;
    border: 2px solid var(--pink-2);
    background: linear-gradient(120deg, rgba(255, 250, 241, .98), rgba(255, 250, 241, .90));
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 22px 18px;
    display: grid;
    grid-template-columns: 45% 55%;
    grid-template-rows: 1fr auto;
    align-items: center
}

.app-hero:before {
    content: "";
    position: absolute;
    inset: -12px;
    background: radial-gradient(circle at 85% 12%, rgba(255, 111, 168, .16), transparent 30%), radial-gradient(circle at 72% 82%, rgba(16, 184, 169, .14), transparent 28%);
    pointer-events: none
}

.hero-mascot {
    width: 165%;
    max-width: none;

    align-self: start;

    justify-self: center;

    margin: 0px 0 0 0px;

    position: relative;
    z-index: 2;

    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .12));
}

.hero-text {
    position: relative;
    z-index: 2;
    padding: 0 4px 70px 4px
}

.hero-text span {
    display: block;
    color: var(--pink);
    font-weight: 900;
    font-size: clamp(20px, 4.8vw, 30px)
}

.hero-text h1 {
    margin: 4px 0 10px;
    font-size: clamp(34px, 8.2vw, 58px);
    line-height: .96;
    letter-spacing: -1.4px
}

.hero-icons {
    font-size: 28px;
    margin: 8px 0
}

.hero-text p {
    color: var(--muted);
    font-size: clamp(16px, 4vw, 22px);
    line-height: 1.35;
    margin: 10px 0 0
}

.hero-pills-mobile {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    position: relative;
    z-index: 3
}

.hero-pills-mobile div {
    background: rgba(255, 255, 255, .84);
    border: 1px solid #ffd4e4;
    border-radius: 22px;
    padding: 14px 10px;
    box-shadow: 0 10px 22px rgba(60, 32, 54, .08);
    text-align: center
}

.hero-pills-mobile small {
    display: block;
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase
}

.hero-pills-mobile strong {
    display: block;
    font-size: clamp(18px, 5vw, 30px);
    line-height: 1.1;
    margin-top: 4px
}

.hero-pills-mobile em {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    margin-top: 4px
}

.online {
    color: #059b55
}

.app-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin: 10px 0 18px;
    background: rgba(255, 255, 255, .92);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 182, 207, .45);
    position: sticky;
    top: 8px;
    z-index: 10;
    backdrop-filter: blur(8px)
}

.app-nav-btn {
    border: 0;
    background: transparent;
    padding: 14px 4px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #48536a;
    font-size: 25px;
    font-weight: 900
}

.app-nav-btn span {
    font-size: 12px
}

.app-nav-btn.active {
    color: var(--pink);
    background: linear-gradient(180deg, #fff0f6, #fff)
}

.mobile-page {
    display: none;
    animation: fadeUp .25s ease
}

.mobile-page.active {
    display: block
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.app-card {
    background: rgba(255, 255, 255, .86);
    border: 1px solid #ffd4e4;
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 18px;
    margin-bottom: 14px;
    backdrop-filter: blur(4px)
}

.card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.card-head.stack {
    align-items: flex-start;
    flex-direction: column
}

.app-card h2 {
    margin: 0;
    color: #f13c82;
    font-size: clamp(20px, 5.5vw, 28px);
    text-transform: uppercase
}

.app-card p {
    color: var(--muted);
    margin: 4px 0 0
}

.soft-link {
    border: 0;
    background: transparent;
    color: var(--pink);
    font-weight: 900;
    font-size: 14px
}

.metric-strip{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.metric-app {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 100%;
    min-width: 0;
    box-sizing: border-box;

    padding: 14px;
    border: 2px solid #ffd2e6;
    border-radius: 22px;
}

.metric-icon {
    width: 75px;
    height: 75px;
    margin-left: -10px;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;
}

.metric-value{
    font-size:28px;
    font-weight:800;
    line-height:1;
    color: #1b2340;

    white-space: nowrap;
}

.metric-title{
    font-size:12px;
    font-weight:800;
    line-height:1;
    color: #1b2340;

    white-space: nowrap;
}

.metric-growth {
    margin-top: 6px;
    font-size: 15px;
    font-weight: 700;

    white-space: nowrap;
}

.metric-growth.up {
    color: #16a34a;
}

.metric-growth.down {
    color: #ef4444;
}

.metric-growth.neutral{
    color:#607080;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.feedback-ring {
    width: 210px;
    height: 130px;
    margin: 6px auto 14px;
    overflow: hidden;
    position: relative
}

.ring-fill {
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: conic-gradient(var(--teal) var(--pct, 0%), var(--pink) 0);
    top: 0;
    left: 0
}

.ring-fill:after {
    content: "";
    position: absolute;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: #fffefa;
    left: 42px;
    top: 42px
}

.ring-center {
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

.ring-center strong {
    display: block;
    font-size: 38px;
    line-height: 1;
}

.ring-center span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.feedback-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.feedback-mini div {
    background: #fffefa;
    border: 1px solid #ffdbe8;
    border-radius: 18px;
    padding: 12px 6px;
    text-align: center
}

.feedback-mini strong {
    display: block;
    color: var(--pink);
    font-size: 22px
}

.feedback-mini span {
    font-size: 12px
}

.team-rows {
    display: grid;
    gap: 9px
}

.team-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 900
}

.team-row small {
    font-size: 22px
}

.team-row.gold {
    background: #fff2d8;
    color: #9b6a00
}

.team-row.green {
    background: #e9f9ef;
    color: #06723d
}

.team-row.red {
    background: #ffe8ef;
    color: #ba243e
}

.team-row.blue {
    background: #e7f1ff;
    color: #236bd6
}

.team-row.total {
    background: #FAF5E9;
    color: var(--text)
}

.mobile-chart svg {
    width: 100%;
    height: 220px;
    display: block
}

.mobile-chart .line {
    fill: none;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.mobile-chart .line-ver {
    stroke: var(--purple)
}

.mobile-chart .line-feed {
    stroke: var(--teal)
}

.mobile-chart .line-deleted {
    stroke: #ffd23f
}

.mobile-chart .axis {
    stroke: #e9d6df;
    stroke-width: 1
}

.mobile-chart .week-labels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 800;
    text-align: center;
    margin-top: 8px
}

.mini-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.mini-legend div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.purple-dot,
.teal-dot,
.gold-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.purple-dot {
    background: var(--purple)
}

.teal-dot {
    background: var(--teal)
}

.gold-dot {
    background: #ffd23f
}

.top-row:last-child {
    border-bottom: 0
}

.top-name b {
    display: block
}

.top-name span {
    color: var(--muted);
    font-size: 12px
}

.search-box,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ffd4e4;
    border-radius: 18px;
    background: #fffefa;
    font-weight: 800;
    outline: none
}

.member-card{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 22px;
    margin-bottom:16px;

    background:#fff;
    border:2px solid #ffd7e8;
    border-radius:26px;
}

.member-left{

    display:flex;
    align-items:center;

    gap:8px;

    flex:1;
    min-width:0;

    margin-left:-8px;
}

.member-pos{

    width:34px;
    height:60px;

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

    flex-shrink:0;
}

.member-pos span{

    width:34px;
    height:34px;

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

    border-radius:50%;

    background:#ffeaf4;

    color:#f54493;

    font-size:20px;
    font-weight:800;
}

.member-avatar{

    width:56px;
    height:56px;

    border-radius:50%;

    overflow:hidden;

    background:#f7f7f7;

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

    flex-shrink:0;
}

.member-avatar img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.member-avatar span{

    font-size:28px;
    font-weight:700;
    color:#1b2340;
}

.member-info{

    flex:1;
    min-width:0;
    padding-right:12px;
}

.member-name{

    font-size:18px;
    font-weight:700;
    color:#1b2340;
    line-height:1.1;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.member-id{

    margin-top:2px;

    font-size:15px;
    font-weight:500;
    color:#807d95;

    line-height:1;
}

.member-sub{

    margin-top:5px;

    font-size:14px;
    color:#70758a;

    line-height:1.2;
}

.member-score{

    width:72px;

    text-align:right;

    flex-shrink:0;
}

.member-score strong{

    display:block;

    font-size:30px;

    color:#1b2340;
}

.member-score small{

    display:block;

    margin-top:2px;

    font-size:16px;

    color:#f54493;

    font-weight:700;
}

.health-cards {
    display: grid;
    gap: 10px
}

.health-card {
    background: #fffefa;
    border: 1px solid #ffdbe8;
    border-radius: 18px;
    padding: 14px
}

.health-card b {
    display: block
}

@media (max-width:680px) {
    .mobile-app {
        padding: 0 0 28px
    }

    .app-hero {
        border-radius: 0 0 34px 34px;
        border-left: 0;
        border-right: 0;
        min-height: 520px;
        grid-template-columns: 48% 52%
    }

    .hero-mascot {
        width: 148%;
        margin-left: -58px;
        margin-bottom: -120px
    }

    .split-grid {
        grid-template-columns: 1fr
    }

    .metric-strip {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:430px) {
    .app-hero {
        min-height: 500px;
        padding: 18px 14px
    }

    .hero-mascot {
        width: 160%;
        margin-left: -70px
    }

    .hero-text {
        padding-bottom: 74px
    }

    .hero-pills-mobile {
        gap: 8px
    }

    .hero-pills-mobile div {
        padding: 12px 6px
    }

    .app-nav {
        margin: 10px 10px 16px
    }

    .app-nav-btn {
        font-size: 22px
    }

    .app-nav-btn span {
        font-size: 11px
    }

    .app-card {
        margin-left: 10px;
        margin-right: 10px
    }

    .metric-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .feedback-mini {
        grid-template-columns: 1fr
    }
}

.top5-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.top5-header h2 {
    margin: 0;
    font-size: 34px;
    color: #f54493;
}

.top5-switch {
    display: flex;
    gap: 10px;
}

.top-tab {

    flex: 1;

    border: none;

    border-radius: 50px;

    background: white;

    border: 2px solid #ffd1e8;

    color: #f54493;

    font-weight: 700;

    padding: 14px;

    font-size: 16px;

    transition: .25s;
}

.top-tab.active {

    background: #f54493;

    color: white;

    box-shadow: 0 8px 18px rgba(245, 68, 147, .30);

}

.top-card{

    display:flex;

    align-items:center;

    gap:16px;

    padding:16px 0;

    border-bottom:1px solid #ffe3ef;

}

.top-card:last-child {

    border-bottom: none;

}

.top-medal{

    width:40px;
    height:48px;

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

    flex-shrink:0;

    font-size:24px;
    font-weight:700;

}

.top-medal span{

    width:30px;
    height:30px;

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

    border-radius:50%;

    background:#ffeaf4;

    color:#f54493;

    font-size:18px;
    font-weight:800;

}

.top-avatar {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    overflow: hidden;

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

    background: linear-gradient(135deg, #fff7fb, #d8fff7);

    flex-shrink: 0;

}

.top-avatar img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

}

.top-info {

    flex: 1;

}

.top-name{

    display:flex;
    align-items:center;
    gap:8px;

    font-size:24px;
    font-weight:700;

    color:#1b2340;

}

.top-name span{

    font-size:15px;
    font-weight:500;

    color:#8b7d9b;

}

.top-bar {

    width: 100%;

    height: 12px;

    background: #ffeef6;

    border-radius: 30px;

    overflow: hidden;

}

.top-fill {

    height: 100%;

    border-radius: 30px;

}

.top-fill.pontos {

    background: linear-gradient(90deg, #ffb72d, #ff8a33);

}

.top-fill.verificacoes {

    background: linear-gradient(90deg, #8257ff, #5f45f4);

}

.top-score {

    width: 70px;

    text-align: right;

    font-weight: 700;

    color: #f54493;

    font-size: 24px;

}

.top-score small {

    display: block;

    font-size: 14px;

}

.top5-more {

    width: 100%;

    margin-top: 18px;

    border: none;

    background: #fff1f7;

    color: #f54493;

    border-radius: 18px;

    padding: 16px;

    font-size: 17px;

    font-weight: 700;

}

.top-name span {
    font-size: 13px;
    font-weight: 500;
    color: #8b7d9b;
}

.member-group {
    margin-bottom: 24px;
}

.member-group-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: 18px;
    margin-bottom: 12px;
    font-weight: 900;
}

.member-group.gestao .member-group-head {
    background: #fff2d8;
    color: #9b6a00;
}

.member-group.ativo .member-group-head {
    background: #e9f9ef;
    color: #06723d;
}

.member-group.inativo .member-group-head {
    background: #ffe8ef;
    color: #ba243e;
}

.member-group.rpp .member-group-head {
    background: #e7f1ff;
    color: #236bd6;
}

.member-card-team{

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:18px 20px;

    margin-bottom:12px;

    border:2px solid #ffd7e8;
    border-radius:24px;

    background:#fff;
}

.member-card-team .member-left{

    display:flex;
    align-items:center;

    gap:14px;

    flex:1;
    min-width:0;
}

.member-avatar{

    width:52px;
    height:52px;

    border-radius:50%;
    overflow:hidden;

    flex-shrink:0;

    background:#f7f7f7;

    display:flex;
    align-items:center;
    justify-content:center;
}

.member-avatar img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.member-info{

    flex:1;
    min-width:0;
}

.member-name{

    font-size:22px;
    font-weight:700;

    color:#1b2340;
}

.member-id{

    margin-top:2px;

    font-size:14px;

    color:#8f90a8;
}

.member-status{

    flex-shrink:0;

    font-size:18px;
    font-weight:700;

    text-align:right;

    white-space:nowrap;
}

.member-status.gestao{
    color:#9b6a00;
}

.member-status.ativo{
    color:#06723d;
}

.member-status.inativo{
    color:#ba243e;
}

.member-status.rpp{
    color:#236bd6;
}

