/* Tour Hero Section */
.tour-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--header-height);
    background-image: url('../assets/images/background-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.tour-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--color-primary-dark) 0%,
        rgba(30, 30, 30, 0.8) 60%,
        rgba(45, 45, 45, 0.7) 100%
    );
    opacity: 0.9;
}

.tour-hero h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Calendar Section */
.calendar-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    background-color: var(--color-background);
}

.calendar-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing-unit) * 8);
    color: var(--color-text-primary);
    text-transform: uppercase;
}

.calendar-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--elevation-3);
    background-color: var(--color-surface);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--elevation-4);
}

.calendar-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    background-color: var(--color-surface);
}

/* Responsividade */
@media (max-width: 768px) {
    .tour-hero {
        height: 300px;
    }

    .tour-hero h1 {
        font-size: 2.5rem;
    }

    .calendar-section h2 {
        font-size: 2rem;
    }

    .calendar-container {
        border-radius: 8px;
    }

    .calendar-container iframe {
        height: 400px;
    }
}
