/* ===============================
   ESTÚDIO SOMP3TOP - CSS PROFISSIONAL
   =============================== */

:root {
    --studio-orange: #ff7b00;
    --studio-dark: #1a1a1a;
    --studio-gray: #6e6e6e;
    --studio-light: #f8f8f8;
    --studio-border: #e5e5e5;
}

/* CONTAINER PRINCIPAL */
.studio-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ==========================
   PERFIL DO ARTISTA
   ========================== */

.studio-profile {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid var(--studio-border);
    margin-bottom: 25px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.05);
}

.studio-avatar {
    width: 90px;
    height: 90px;
    background: #ddd;
    border-radius: 50%;
    margin-right: 25px;
}

.studio-info h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.studio-username {
    color: var(--studio-gray);
    margin-top: 4px;
}

.studio-actions {
    margin-left: auto;
    display: flex;
    gap: 12px;
}

.btn-outline {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--studio-border);
    font-weight: 500;
    color: var(--studio-dark);
    background: #fff;
    transition: 0.2s;
}

.btn-outline:hover {
    border-color: var(--studio-dark);
}

.btn-orange {
    padding: 10px 18px;
    background: var(--studio-orange);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: 0.2s;
}

.btn-orange:hover {
    opacity: 0.9;
}

/* ==========================
   MENU DO STÚDIO
   ========================== */

.studio-menu {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--studio-border);
    padding-bottom: 8px;
}

.studio-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--studio-gray);
    padding: 8px 0;
    position: relative;
    text-decoration: none;
    transition: 0.2s;
}

.studio-menu a:hover {
    color: var(--studio-dark);
}

/* Estilo PRO para o ativo */
.studio-menu a.active {
    color: var(--studio-dark);
    font-weight: 600;
}

.studio-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 3px;
    background: var(--studio-orange);
    border-radius: 3px;
    animation: studioSlideIn 0.3s ease;
}

@keyframes studioSlideIn {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* ==========================
   ÁLBUNS
   ========================== */

.studio-albums {
    margin-top: 20px;
}

.studio-empty {
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--studio-border);
    border-radius: 14px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
}

.btn-big-orange {
    margin-top: 12px;
    display: inline-block;
    padding: 14px 26px;
    background: var(--studio-orange);
    color: #fff;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-big-orange:hover {
    opacity: 0.9;
}

/* GRID DE ÁLBUNS */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 22px;
}

.album-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--studio-border);
    padding: 12px;
    transition: 0.25s ease;
    position: relative;
    cursor: pointer;
}

.album-card:hover {
    box-shadow: 0px 6px 18px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}

.album-cover {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.album-info {
    margin-top: 10px;
}

.album-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.album-info p {
    margin: 2px 0 0;
    font-size: 13px;
    color: var(--studio-gray);
}

/* link editar */
.album-edit {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--studio-dark);
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 8px;
    color: white !important;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.2s;
}

.album-edit:hover {
    opacity: 1;
}

/* ==========================
   RESPONSIVIDADE
   ========================== */

@media (max-width: 600px) {
    .studio-profile {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .studio-actions {
        margin: 0;
    }

    .studio-menu {
        gap: 18px;
        font-size: 14px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 12px;
    }

    .album-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .album-cover {
        height: 150px;
    }
}
// *** perfil * //
/* /* ===============================
   PERFIL - ESTILO PREMIUM
================================ */

:root {
    --orange: #ff7b00;
    --dark: #1a1a1a;
    --gray: #6e6e6e;
    --border: #e4e4e4;
}

/* ------------------------------
   CAPA
-------------------------------- */
.profile-cover-wrapper {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.profile-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.profile-cover-wrapper:hover .profile-cover-img {
    transform: scale(1.05);
    opacity: .95;
}

.profile-cover-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: rgba(0,0,0,.5);
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: .2s;
}

.profile-cover-btn:hover {
    background: rgba(0,0,0,.7);
}

.profile-cover-btn input {
    display: none;
}

/* ------------------------------
   AVATAR
-------------------------------- */
.profile-header {
    text-align: center;
    margin-top: -45px;
    margin-bottom: 40px;
}

.profile-avatar-wrapper {
    width: 120px;
    margin: 0 auto;
    position: relative;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    transition: .3s ease;
}

.profile-avatar-wrapper:hover .profile-avatar {
    transform: scale(1.08) rotate(1deg);
}

.profile-avatar-btn {
    position: absolute;
    right: -5px;
    bottom: -5px;
    background: var(--orange);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

.profile-avatar-btn input {
    display: none;
}

.profile-name {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
}

.profile-username {
    color: var(--gray);
    margin-top: 4px;
}

/* ------------------------------
   FORM
-------------------------------- */
.profile-form {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(0,0,0,.05);
}

.form-group {
    margin-bottom: 18px;
}

.form-row-2 {
    display: flex;
    gap: 20px;
}

.form-row-2 .form-group {
    flex: 1;
}

.profile-form input,
.profile-form select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 15px;
    background: #fafafa;
}

.btn-big-orange {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    margin-top: 15px;
}

/* ------------------------------
   CROP MODAL
-------------------------------- */
.crop-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.crop-box {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    width: 90%;
    max-width: 450px;
}

.crop-img {
    width: 100%;
    max-height: 400px;
}

.crop-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.btn-save {
    padding: 10px 20px;
    background: var(--orange);
    color: #fff;
    border-radius: 10px;
}

.btn-cancel {
    padding: 10px 20px;
    background: #ddd;
    border-radius: 10px;
}

/* ------------------------------
   MOBILE
-------------------------------- */
@media (max-width: 600px) {
    .profile-cover-wrapper {
        height: 160px;
    }

    .profile-avatar {
        width: 90px;
        height: 90px;
    }

    .profile-name {
        font-size: 20px;
    }
}
