* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f0;
    font-family: "League Spartan", sans-serif;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.box {
    text-align: center;
    background: #fff;
    max-width: max-content;
    width: 100%;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, .08);
}

h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.numeros {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.numeros div {
    text-align: center;
}

.numeros h2 {
    font-size: 2.5rem;
    color: #97958f;
    transition: all 0.5s ease;
}

.numeros h2:hover {
    color: hsl(0, 0%, 25%);
    transform: scale(1.1);
}

.avaliacoes {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
}

.avaliacoes h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.avaliacoes span {
    margin-top: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
}


.prints {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
    /* melhora no mobile */
}


.prints img {
    width: 100%;
    max-width: 400px;
    border-radius: 6px;
}

.termos-box {
    background: #f0efeb;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.termos-box ul {
    margin: 1rem 0 1rem 1.2rem;
}

.aceite {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.botoes {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

button {
    padding: 0.9rem 1.5rem;
    border: none;
    background: #97958f;
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #8f8c86;
}

.secundario {
    background: #555;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.4s ease;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 700px;
    padding: 2rem;
    border-radius: 10px;
    transform: scale(0.9);
    animation: scaleUp 0.4s ease forwards;
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    to {
        transform: scale(1);
    }
}

.termos-box {
    max-height: 280px;
    overflow-y: auto;
    padding: 1.2rem;
    background: #f0efeb;
    border-radius: 6px;
    margin: 1rem 0;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmar {
    margin-top: 1.5rem;
    width: 100%;
    padding: 0.9rem;
    background: #97958f;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirmar:hover {
    background: #8f8c86;
    transform: scale(1.03);
}

.fechar {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
}

.barra-tempo {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin: 15px 0 10px;
}

.barra-progresso {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6b6b6b, #000);
    transition: width 0.2s linear;
}


.box img {

    width: 100%;
    /* ajusta o tamanho da imagem */
    max-width: 300px;
    /* evita que fique grande demais */
    height: auto;
    display: inline-block;
    cursor: pointer;
    animation: zoomOut 1s ease-out forwards;
}