/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to top,
        var(--white) 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.85) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-shadow: var(--text-shadow);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-position: center;
    background-size: cover;
}

.slide.active {
    opacity: 1;
}

/* Section Layouts */
.rooms {
    background: var(--white);
    padding: 6rem 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.weather-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.gallery-section {
    background: var(--light-bg);
    padding: 6rem 2rem;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.location-section {
    padding: 6rem 2rem;
    background: var(--white);
    color: var(--text-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Container Elements */
.transport-card,
.help-block,
.weather-card,
.room-card {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-card:hover,
.help-block:hover,
.weather-card:hover,
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Container Layouts */
.weather-container {
    max-width: var(--max-width-lg);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
}

.forecast-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--spacing-md);
    overflow-x: unset; /* Remove scroll horizontal forçado */
    padding: 0.5rem 0;
}

/* Map Layout */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: var(--spacing-lg) 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Transport Info Layout */
.transport-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* Help Section Layout */
.help-block {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* Places Layout */
.places-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.places-list.expanded {
    max-height: 2000px;
}

/* Navigation Layout */
.nav-list, 
.places-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-bottom: var(--spacing-sm);
}

.nav-list a {
    display: block;
    padding: var(--spacing-xs) 0;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-base);
}

/* Logo Layout */
.nav-logo {
    width: 120px;
    height: auto;
    margin: 0 auto var(--spacing-md);
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: var(--spacing-xl);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, .2));
}

/* Footer Layout - SIMPLIFICADO */
.footer-integrated {
    margin-top: 0;
    padding: var(--spacing-lg) var(--spacing-md);
    border-top: 1px solid rgba(85, 107, 47, 0.1);
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-integrated p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsivo para o footer */
@media (max-width: 768px) {
    .footer-integrated {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-integrated p {
        order: 1;
    }
    
    .complaints-book-link {
        order: 2;
    }
}

/* Room Grid Layout */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: var(--max-width-xl);
    margin: 0 auto;
    padding: var(--spacing-lg);
}

/* Gallery Layout */
.gallery-slideshow {
    position: relative;
    max-width: var(--max-width-xl);
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-lg);
}

/* Location Section Layout */
.location-section {
    padding: 6rem 2rem;
    background: var(--white);
    color: var(--text-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.location-container {
    max-width: var(--max-width-xl);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    padding: var(--spacing-lg);
}

/* Contact Section Layout */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Sistema de Notificações */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s ease;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
    border-left: 5px solid;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.95), rgba(56, 142, 60, 0.95));
    color: var(--white);
    border-left-color: #4caf50;
}

.notification.error {
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.95), rgba(211, 47, 47, 0.95));
    color: var(--white);
    border-left-color: #f44336;
}

.notification.warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.95), rgba(255, 167, 38, 0.95));
    color: var(--white);
    border-left-color: #ff9800;
}

.notification.info {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.95), rgba(30, 136, 229, 0.95));
    color: var(--white);
    border-left-color: #2196f3;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.notification-title {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    padding: 0;
    line-height: 1;
}

.notification-close:hover {
    opacity: 1;
}

.notification-message {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.notification-details {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Animação de entrada suave */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.entering {
    animation: slideInRight 0.4s ease forwards;
}

/* ===== TRANSPORT CARD - VERSÃO MODERNA ===== */
.transport-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8faf6 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(85, 107, 47, 0.12);
    border: 1px solid rgba(85, 107, 47, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.transport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.transport-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(85, 107, 47, 0.18);
}

.transport-card h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.transport-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.route-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.route-steps::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.route-steps li {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.route-steps li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.route-steps li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(85, 107, 47, 0.3);
    z-index: 1;
}

.route-steps li:first-child::before {
    background: var(--primary-color);
}

.route-steps li:last-child::before {
    background: var(--success);
}

.route-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 2.5rem 0;
    position: relative;
}

.route-divider::after {
    content: '•';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    color: var(--accent-color);
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alternative-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding: 1rem;
    background: rgba(85, 107, 47, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.alternative-title::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--accent-color);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Melhorias visuais adicionais */
.transport-card .route-steps li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.transport-card .route-steps li em {
    color: var(--accent-color);
    font-style: normal;
    background: rgba(124, 144, 67, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animação sutil para o ícone */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.transport-card:hover .transport-icon {
    animation: pulse 2s infinite;
}

/* ===== ROTAS LADO A LADO ===== */
.routes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.route-column {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* CORREÇÃO: Ambos os títulos com o mesmo formato */
.route-column h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(85, 107, 47, 0.1);
}

/* Diferenciação visual entre as rotas */
.route-column:first-child h3 {
    color: var(--primary-color);
}

.route-column:first-child h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.route-column:last-child h3 {
    color: var(--accent-color);
}

.route-column:last-child h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

/* Ajuste das listas para as colunas */
.route-column .route-steps {
    flex: 1;
}

.route-column .route-steps::before {
    left: 18px;
    background: linear-gradient(180deg, 
        var(--primary-color), 
        var(--accent-color)
    );
}

/* Diferenciação dos pontos por coluna */
.route-column:first-child .route-steps li::before {
    background: var(--primary-color);
}

.route-column:last-child .route-steps li::before {
    background: var(--accent-color);
}

/* Separador vertical entre colunas */
.routes-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 2rem;
    bottom: 2rem;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent, 
        var(--secondary-color) 20%, 
        var(--secondary-color) 80%, 
        transparent
    );
    transform: translateX(-50%);
    z-index: 1;
}

.transport-card {
    position: relative; /* Para o separador */
}

/* Responsivo - volta ao layout vertical em telas pequenas */
@media (max-width: 768px) {
    .routes-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .routes-container::after {
        display: none;
    }
    
    /* Adicionar separador horizontal no mobile */
    .route-column:first-child::after {
        content: '';
        position: absolute;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent, 
            var(--secondary-color), 
            transparent
        );
    }
}

@media (max-width: 480px) {
    .routes-container {
        gap: 1.5rem;
    }
    
    .route-column h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .route-column .route-steps li {
        font-size: 0.85rem;
        padding: 0.6rem 0 0.6rem 2rem;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    @keyframes slideInTop {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .notification.entering {
        animation: slideInTop 0.4s ease forwards;
    }
    
    .transport-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .transport-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
          
    .route-steps li {
        padding: 0.8rem 0 0.8rem 2.5rem;
        font-size: 0.9rem;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }
    
    .route-steps::before {
        left: 15px;
    }
    
    .route-steps li::before {
        left: -15px;
        width: 10px;
        height: 10px;
    }
    
    .transport-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .transport-card {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .transport-card h3 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
        
    .route-steps li {
        padding: 0.6rem 0 0.6rem 2rem;
        font-size: 0.85rem;
    }
    
    .route-divider {
        margin: 1.5rem 0;
    }
}