/* ========================================
   PÁGINA DE CIDADE/HOTEL - DESIGN MODERNO
   ======================================== */

/* Hero Section - Moderno e Impactante */
.city-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.city-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.city-hero:hover .city-hero-bg {
    transform: scale(1.08);
}

.city-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 28, 45, 0.85) 0%, rgba(34, 34, 93, 0.75) 50%, rgba(255, 107, 0, 0.3) 100%);
    z-index: 2;
}

.city-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 30px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.city-hero-content .breadcrumb {
    justify-content: center;
    margin-bottom: 25px;
    opacity: 0.9;
}

.city-hero-content .breadcrumb a,
.city-hero-content .breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.city-hero-content .breadcrumb a:hover {
    color: var(--primary-orange);
}

.city-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    line-height: 1.1;
}

.city-hero-content p {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Cards de Processo - Design Moderno */
.process-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    position: relative;
}

.process-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-weight: 700;
}

.process-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Cards de Diferenciais */
.benefit-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 26px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-weight: 700;
}

.benefit-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* FAQ - Accordion Moderno */
.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    border-left-color: var(--primary-orange);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.12);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.faq-item h3 i {
    color: var(--primary-orange);
    font-size: 22px;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.8;
    padding-left: 37px;
    font-size: 1.05rem;
}

/* Seções com Background */
.section-alt {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Responsivo */
@media (max-width: 768px) {
    .city-hero {
        height: 450px;
    }
    
    .city-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .city-hero-content p {
        font-size: 1.1rem;
    }
    
    .process-card {
        padding: 30px 20px;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .city-hero {
        height: 400px;
    }
    
    .city-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .city-hero-content p {
        font-size: 1rem;
    }
    
    .process-card {
        padding: 25px 15px;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item p {
        padding-left: 0;
    }
}
