﻿.cliente-container1 {
    background-color: #606268;
    padding-bottom: 2rem;
}

    .cliente-container1 .row .col {
        display: flex;
        margin-left: auto;
        margin-right: auto;
        padding: 2rem;
        background-color: #EFEAFA;
        border-radius: 1rem;
        margin-top:8rem;
        max-width:60rem;
    }

        .cliente-container1 .row .col .cliente-container1-text h1 {
            color: #DA5A31;
            font-weight: bold;
            font-size: 2rem;            
        }

        .cliente-container1 .row .col .cliente-container1-text p {
            font-size: 1.2rem;
            padding: 1rem;
        }

        .cliente-container1 .row .col .cliente-container1-img img {
            object-fit: cover;
            border-radius: 1rem;
        }

        .cliente-container1 .row .col .cliente-container1-btn a {
            background-color: #DA5A31;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            text-decoration: none !important;
            transition: background-color 0.3s ease;
        }

            .cliente-container1 .row .col .cliente-container1-btn a:hover {
                background-color: white;
                color: #DA5A31;
                border-color: #DA5A31;                
            }

.cliente-container2 {
    background-color: #DA5A31;
    
}


    .cliente-container2 .row .col {
        display: flex;
        margin-left: 2rem;
        margin-right: 2rem;
        padding: 2rem;
        background-color: white;
    }

        .cliente-container2 .row .col .cliente-container2-img img {
            object-fit: cover;
            border-radius: 1rem;
            height:30rem;
            
        }

        .cliente-container2 .row .col .cliente-container2-text h1 {
            color: #DA5A31;
            font-weight: bold;
            font-size: 2rem;
            padding:2rem;
            text-align:center;
        }

        .cliente-container2 .row .col .cliente-container2-text section {
            margin-left: auto;
            margin-right: auto;
        }

.container-espaco-cliente-barra {
    background-color: #DA5A31;
}

    .container-espaco-cliente-barra .row .col {
        display: flex;
        margin-left: 2rem;
        margin-right: 2rem;
        padding: 2rem;
        background-color: white;
    }

.espaco-cliente-barra {
    width: 70rem;
    height: 1rem;
    background-color: #DA5A31;
    border-radius: 3rem;
    margin: 0 auto;
}




.cliente-container3 {
    background-color: #DA5A31;
}

    .cliente-container3 .row .col {
        display: flex;
        margin-left: 2rem;
        margin-right: 2rem;
        padding: 2rem;
        background-color: white;
    }

        .cliente-container3 .row .col .cliente-container3-img img {
            object-fit: cover;
            border-radius: 1rem;
            height: 30rem;
            
        }

        .cliente-container3 .row .col .cliente-container3-text h1 {
            color: #DA5A31;
            font-weight: bold;
            font-size: 2rem;
            padding: 2rem;
            text-align: center;
        }

        .cliente-container3 .row .col .cliente-container3-text section {
            margin-left: auto;
            margin-right: auto;
        }



/* Alegro Fase 4 */


.progress-chart {
    background: #606268;
    border-radius: 14px;
    padding: 22px;
    color: white;
    max-width: 720px;
}

            .progress-chart__header {
                display: flex;
                justify-content: space-between;
                margin-bottom: 18px;
            }

            .progress-chart__title {
                margin: 0;
                font-size: 18px;
                letter-spacing: .08em;
            }

            .progress-chart__date {
                margin-top: 6px;
                font-size: 13px;
                color: #a7a7aa;
            }

            .progress-chart__total {
                font-size: 34px;
                font-weight: 800;
                color: #f28c00;
            }

            .progress-chart__list {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .progress-chart__item {
                display: grid;
                grid-template-columns: 180px 1fr 56px;
                align-items: center;
                gap: 12px;
            }

            .progress-chart__label {
                font-size: 12px;
                letter-spacing: .08em;
                color: #a7a7aa;
            }

            .progress-chart__value {
                text-align: right;
                font-weight: 700;
            }

            .progress-chart__track {
                height: 12px;
                background: #2a2a2e;
                border-radius: 999px;
                overflow: hidden;
            }

            .progress-chart__fill {
                display: block;
                height: 100%;
                width: calc(var(--percent) * 1%);
                background: linear-gradient(90deg, #ffb24a, #f28c00);
                border-radius: 999px;
                animation: progressLoopALegro 15s ease-in-out;
            }


/* Manoa Fase 1 */

.progress-summary {
    background: #606268;
    padding: 22px;
    border-radius: 14px;
    color: white;
    max-width: 720px;
}

.progress-summary__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.progress-summary__item {
    display: grid;
    grid-template-columns: 180px 1fr 70px;
    align-items: center;
    gap: 12px;
}

.progress-summary__label {
    font-size: 12px;
    letter-spacing: .08em;
    color: #a7a7aa;
}

.progress-summary__percent {
    text-align: right;
    font-weight: 700;
}

.progress-summary__track {
    height: 12px;
    background: #2a2a2e;
    border-radius: 999px;
    overflow: hidden;
}

.progress-summary__fill {
    height: 100%;
    width: calc(var(--value) * 1%);
    display: block;
    border-radius: 999px;
    animation: progressLoopManoa 15s ease-in-out;
}

    /* cores */
    .progress-summary__fill.is-green {
        background: linear-gradient(90deg, #6fdc8c, #2fbf71);
    }

    .progress-summary__fill.is-orange {
        background: linear-gradient(90deg, #ffb24a, #f28c00);
    }

/* destaque do total */
.progress-summary__item.is-total .progress-summary__label,
.progress-summary__item.is-total .progress-summary__percent {
    font-weight: 800;
    color: #f28c00;
}

.progress-summary__footer {
    margin-top: 18px;
    font-size: 13px;
    color: #a7a7aa;
}


@keyframes progressLoopManoa {
    0% {
        width: 0;
    }

    60% {
        width: calc(var(--value) * 1%);
    }

    100% {
        width: 0;
    }
}

@keyframes progressLoopALegro {
    0% {
        width: 0;
    }

    60% {
        width: calc(var(--percent) * 1%);
    }

    100% {
        width: 0;
    }
}
/* =============================================
   RESPONSIVIDADE — ESPAÇO CLIENTE
   ============================================= */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {

    /* Container 1 — Boas-vindas: empilha texto + imagem */
    .cliente-container1 .row .col {
        flex-direction: column;
        margin-top: 2rem;
        padding: 1.5rem;
    }
    .cliente-container1 .row .col .cliente-container1-text h1 { font-size: 1.5rem; }
    .cliente-container1 .row .col .cliente-container1-text p  { font-size: 1rem; padding: 0.5rem; }

    /* Container 2 — Alegro: empilha imagem + gráfico */
    .cliente-container2 .row .col {
        flex-direction: column;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    .cliente-container2 .row .col .cliente-container2-img img { height: auto; width: 100%; }
    .cliente-container2 .row .col .cliente-container2-text h1 { font-size: 1.5rem; padding: 1rem; }

    /* Container 3 — Manoa */
    .cliente-container3 .row .col {
        flex-direction: column;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    .cliente-container3 .row .col .cliente-container3-img img { height: auto; width: 100%; }
    .cliente-container3 .row .col .cliente-container3-text h1 { font-size: 1.5rem; padding: 1rem; }

    /* Barra decorativa */
    .espaco-cliente-barra { width: 90%; }

    /* Progress charts — label + track + valor em coluna */
    .progress-chart__item,
    .progress-summary__item {
        grid-template-columns: 1fr 60px;
        grid-template-rows: auto auto;
    }
    .progress-chart__label,
    .progress-summary__label {
        grid-column: 1;
        grid-row: 1;
    }
    .progress-chart__value,
    .progress-summary__percent {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }
    .progress-chart__track,
    .progress-summary__track {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .progress-chart { max-width: 100%; }
    .progress-summary { max-width: 100%; }
}

/* ── Mobile (≤ 575px) ── */
@media (max-width: 575px) {

    /* Container 1 */
    .cliente-container1 .row .col {
        margin-top: 1.5rem;
        padding: 1rem;
        border-radius: 0.75rem;
    }
    .cliente-container1 .row .col .cliente-container1-text h1 { font-size: 1.2rem; }
    .cliente-container1 .row .col .cliente-container1-btn button {
        width: 100%;
        margin-bottom: 0.5rem;
        display: block;
    }

    /* Containers 2 e 3 */
    .cliente-container2 .row .col,
    .cliente-container3 .row .col {
        margin-left: 0;
        margin-right: 0;
        padding: 1rem;
    }
    .cliente-container2 .row .col .cliente-container2-text h1,
    .cliente-container3 .row .col .cliente-container3-text h1 { font-size: 1.1rem; padding: 0.5rem; }

    /* Barra */
    .espaco-cliente-barra { width: 95%; height: 0.6rem; }

    /* Progress — fonte menor */
    .progress-chart__title   { font-size: 14px; }
    .progress-chart__total   { font-size: 26px; }
    .progress-chart__label,
    .progress-summary__label { font-size: 11px; }
    .progress-chart__value,
    .progress-summary__percent { font-size: 13px; }
}
