/* ===================================
   PÁGINA DE PROJETOS - ESTILOS
   =================================== */

/* Grid de Projetos */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Item de Projeto */
.project-item {
    position: relative;
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 0px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.project-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 0 2px #de3447,
        0 0 20px rgba(233, 76, 98, 0.8),
        0 0 40px rgba(233, 76, 98, 0.6);
}

/* Imagem/Vídeo do Projeto */
.project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a, #000000);
}

.project-image .embed-videoreel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

.project-image iframe,
.project-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-item:hover .project-image iframe,
.project-item:hover .project-image video {
    transform: scale(1.05);
}

/* Informações do Projeto */
.project-info {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.project-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.project-category {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsivo - Tablet */
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .project-title {
        font-size: 1.1rem;
    }
}

/* Responsivo - Mobile */
@media (max-width: 767px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-info {
        padding: 1.25rem;
    }

    .project-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 479px) {
    .projects-grid {
        gap: 1.25rem;
    }

    .project-info {
        padding: 1rem;
    }

    .project-title {
        font-size: 1rem;
    }

    .project-category {
        font-size: 0.85rem;
    }
}

/* Seção de Projetos */
.projects-grid-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #091A26 0%, #000000 100%);
}