﻿/* Projects */
.projectPage-studio {
    min-height: calc(100vh - 370px); 
    padding: 50px;
    box-sizing: border-box;
    margin-top: 130px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.projects-grid-studio {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Card */
.project-card-studio {
    flex: 1 1 380px;
    min-width: 380px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #F4F4F4;
    text-decoration: none;
    color: black;
}

.project-card-studio:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.project-logo-studio {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.kartodromo-project-logo-studio {
    min-width: 70px;
    min-height: 70px;
    max-width: 70px;
    max-height: 70px;
    background-color: white;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    overflow: hidden;
    padding: 10px;
}

.project-card-studio .project-info-studio {
    padding: 1rem;
}

    .project-card-studio .project-info-studio h3 {
        margin: 0;
        font-size: 1.25rem;
    }

    .project-card-studio .project-info-studio small {
        color: #888;
    }

.project-card-studio .project-info-studio p {
    margin: 0.5rem 0;
    color: #555;
}

    .project-card-studio .project-info-studio .badge-studio {
        font-size: 18px;
        font-weight: 700
    }

.project-info-company-studio {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}

    .project-info-company-studio div {
        display: flex;
        gap: 10px;
        align-items: center;
    }

.project-card-studio .btn-dots-studio {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}

.project-card-studio .menu-popup-studio {
    position: absolute;
    top: 2rem;
    right: 0.75rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
}

.project-card-studio .menu-popup-studio button {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
}

.project-card-studio .menu-popup-studio button:hover {
    background: #f3f4f6;
}

.empty-card-studio {
    border: none;
    width: 100%;
    height: 100%;
    color: #6b7280;
    background: transparent;
    padding: 2rem;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

    .empty-card-studio:hover {
        background: #f9fafb;
    }




/* Modal Overlay */


.modal-overlay-project-studio {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content-project-studio {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

    .modal-content-project-studio label {
        display: block;
        margin-bottom: 10px;
        font-size: 20px;
        margin-top: 30px;
    }

    .modal-content-project-studio h3 {
        display: block;
        margin-bottom: 15px;
        font-size: 22px;
    }

.form-group-project-studio {
    margin-bottom: 1rem;
}

.modal-actions-project-studio {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}

.opcoes-container-studio {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

    .opcoes-container-studio button {
        flex: 1;
    }


