/* style_mvp.css - Modernizado para UX Premium */

:root {
    /* Cores ajustadas para maior contraste e modernidade */
    --primary-btn: var(--primary-accent); /* Usando o azul vibrante do global */
    --primary-hover: #1d4ed8; 
    --accent-shadow: rgba(37, 99, 235, 0.2); /* Sombra suave em vez de preta */
}

body {
    background-color: var(--bg-main);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1.5rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.formatdiv {
    background-color: var(--white);
    width: 100%;
    max-width: 550px; 
    aspect-ratio: 1 / 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    /* Sombra mais suave e moderna (Layered Shadow) */
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border-radius: 50%; 
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.mvp-logo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-main);
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s ease;
}

.mvp-logo:hover {
    transform: rotate(5deg) scale(1.05);
}

#alink {
    width: 100%;
    max-width: 380px;
    text-decoration: none;
}

/* Botão Modernizado */
button.btn-mvp {        
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    min-height: 70px;
    color: rgb(8, 30, 156);
    background: var(--primary-btn);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 15px -3px var(--accent-shadow);
}

button.btn-mvp strong {
    font-weight: 700;
}

button.btn-mvp:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px var(--accent-shadow);
}

button.btn-mvp:active {
    transform: translateY(0);
}

/* Footer do MVP */
.spanfooter {
    display: block;
    color: var(--secondary-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

#principal_span {
    margin-top: 1rem;
}

/* --- RESPONSIVIDADE MOBILE (Samsung, Motorola, iPhone) --- */

@media (max-width: 600px) {
    .formatdiv {
        border-radius: 32px; /* Deixa de ser círculo para ganhar espaço */
        aspect-ratio: auto;
        padding: 3rem 1.5rem;
        max-width: 100%;
    }

    .mvp-logo {
        width: 100px;
        height: 100px;
    }

    button.btn-mvp {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* Ajuste para dispositivos muito pequenos */
@media (max-width: 380px) {
    .formatdiv {
        padding: 2rem 1rem;
    }
    
    .spanfooter {
        font-size: 0.65rem;
    }
}