/* Casos Page Specific Styles */
.cp-hero-section {
    padding: 190px 0 100px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, transparent 100%);
    text-align: center;
}

.cp-hero-section .badge {
    margin-bottom: 20px;
}

.cp-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.cp-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.cp-case-study {
    padding: 60px 0 120px;
}

.cp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.cp-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 550px;
}

.cp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.cp-gallery-item:hover img {
    transform: scale(1.05);
}

.cp-gallery-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    border: 1px solid var(--accent-blue);
    white-space: nowrap;
}

.cp-case-header {
    text-align: center;
    margin-bottom: 50px;
}

.cp-case-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.cp-case-logo img {
    max-width: 100%;
    border-radius: 50%;
}

@media (max-width: 900px) {
    .cp-gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .cp-gallery-item {
        height: 400px;
    }

    .cp-title {
        font-size: 3rem;
    }
}