.explodidas-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;

    height: 100%;
    width: 100%;
    max-width: 1610px;

    margin-top: 3rem;
}

.header {
    width: 76%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.header {
    margin-top: 1.5rem;
}

.header-section {
    margin-top: 3rem;
}

.header span {
    color: var(--blue);
}

.header h1 {
    font-size: 1.8rem;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    margin-left: 11.5rem;
}

.back-link i,
.back-link span {
    color: var(--blue);
}

.explodidas-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 76%;
}

.file-card-wrapper {
    text-decoration: none;
    color: inherit;
}

.file-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.file-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

.file-img-container {
    height: 220px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.file-img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s, transform 0.3s;
}

.file-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.file-info {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.file-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--blue);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.file-name {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    margin-top: 1rem !important;
}

.view-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.file-card:hover .view-indicator {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .explodidas-grid {
        gap: 1.5rem;
    }

    .file-card:hover {
        transform: none;
    }

    .back-link {
        margin-left: 12%;
        font-size: 0.8rem;
    }

    .header {
        margin-top: 0.8rem;
    }

    .header h1 {
        font-size: 1.3rem;
    }

    .header p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.3rem;
    }

    .explodidas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .file-name {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        margin-top: 0.7rem !important;
    }

    .file-img-container {
        height: 140px;
        padding: 0.2rem;
    }

    .view-indicator {
        opacity: 1 !important;
        transform: translateX(0) !important;
        margin-top: 10px;
        font-size: 0.75rem;
        color: var(--blue);
        display: flex;
        align-items: center;
        gap: 4px;
    }
}