/* ==============================================
   PÁGINA DE TOUR VIRTUAL
   ============================================== */

.page-header {
    padding: 140px 20px 60px;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Bento Gallery */
.bento-section {
    max-width: var(--container-max);
    margin: 0 auto 4rem;
    padding: 0 var(--container-padding);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.5rem;
}

.bento-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.bento-item::after {
    content: attr(data-title);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-item:hover::after {
    opacity: 1;
}

/* Bento Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    gap: 1rem;
}

.bento-placeholder svg {
    opacity: 0.3;
}

.bento-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Tour CTA Section */
.tour-cta-section {
    max-width: var(--container-max);
    margin: 0 auto 4rem;
    padding: 0 var(--container-padding);
}

.tour-cta-card {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 24px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 400px;
    overflow: hidden;
}

.tour-cta-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.tour-cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tour-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: white;
    color: var(--primary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.2s;
    width: fit-content;
}

.tour-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tour-cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.tour-cta-image {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-placeholder {
    opacity: 0.3;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-medium {
        grid-column: span 2;
    }

    .bento-small {
        grid-column: span 1;
    }

    .bento-tall {
        grid-column: span 1;
        grid-row: span 2;
    }

    .tour-cta-card {
        grid-template-columns: 1fr;
    }

    .tour-cta-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 40px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .bento-large,
    .bento-medium,
    .bento-small,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .tour-cta-content {
        padding: 2rem 1.5rem;
    }

    .tour-cta-title {
        font-size: 1.75rem;
    }

    .tour-cta-btn {
        width: 100%;
    }
}
