/*  
 Theme Name: Twenty Twenty-Five Child
 Theme URI: https://profcleberluz.com
 Description: Tema filho para o SaaS Escola de Eletroterapia – Fullscreen Mode
 Author: Prof. Cleber Luz
 Template: twentytwentyfive
 Version: 1.0
*/

/* ================================
   EE APP — FULLSCREEN CONTAINER
================================ */

.ee-app-shell {
    background: #0B1220;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.ee-app-header {
    padding: 32px 24px 0 24px;
}

.ee-app-content {
    padding: 24px;
}


/* ============================================
   HEADER — EXACT DASHBOARD STYLE (PRO)
============================================ */

.ee-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: linear-gradient(175deg, rgba(25,32,49,0.8) 0%, rgba(12,19,35,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.05);

    padding: 24px 32px;
    border-radius: 18px;

    margin-bottom: 40px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 12px 48px rgba(0,0,0,0.35);
}

.ee-header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ee-header-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;

    border: 3px solid #1fb6ff;
    box-shadow: 0 0 12px rgba(31,182,255,0.45);
}

.ee-header-user {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.ee-header-name {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

.ee-header-plan {
    color: #7cc9ff;
    font-size: 15px;
    margin-top: 3px;
}

.ee-header-account-btn {
    margin-left: 12px;
    padding: 6px 16px;
    border-radius: 14px;

    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);

    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;

    transition: 0.25s ease;
}

.ee-header-account-btn:hover {
    background: rgba(255,255,255,0.18);
}


/* BOTÃO PRO — Idêntico ao Dashboard */
.ee-header-right .ee-header-upgrade {
    padding: 12px 26px;

    background: linear-gradient(90deg, #05d5ff 0%, #37ff8b 100%);
    border-radius: 24px;

    color: #000 !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 4px 14px rgba(0,255,170,0.35);
    transition: 0.25s ease-in-out;
}

.ee-header-right .ee-header-upgrade:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,255,170,0.5);
}


/* ================================
   RESPONSIVIDADE
================================ */

@media (max-width: 768px) {

    .ee-header-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 28px 22px;
    }

    .ee-header-left {
        flex-direction: column;
        gap: 10px;
    }

    .ee-header-account-btn {
        margin-left: 0;
    }

    .ee-header-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .ee-header-upgrade {
        width: 100%;
        text-align: center;
    }
}
