/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

/* Container principal */
.container {
    max-width: 400px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
}

/* Cabeçalho */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.subtitle {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Banner de alertas importantes */
.alert-banner {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    animation: alertPulse 2s infinite;
}

.alert-banner i {
    margin-right: 8px;
    font-size: 1rem;
}

@keyframes alertPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Menu */
.menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 18px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.menu-item:active {
    transform: translateY(0);
}

/* Ícones dos itens do menu */
.menu-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Cores específicas para cada ícone */
.wifi .menu-icon { 
    background: #1c355e; 
}

.whatsapp .menu-icon { 
    background: #1c355e; 
}

.hours .menu-icon { 
    background: #1c355e; 
}

.location .menu-icon { 
    background: #1c355e; 
}

.review .menu-icon { 
    background: #1c355e; 
}

.instagram .menu-icon { 
    background: #1c355e; 
}

/* Conteúdo dos itens do menu */
.menu-content {
    flex: 1;
}

.menu-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.menu-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Informações do Wi-Fi */
.wifi-info {
    display: none;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    border-left: 4px solid #4ecdc4;
}

.wifi-info.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.wifi-details {
    font-size: 0.9rem;
    line-height: 1.5;
}

.wifi-password {
    background: #e3f2fd;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #1976d2;
    margin: 8px 0;
    text-align: center;
}

/* Rodapé */
.footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer-text {
    color: #888;
    font-size: 0.8rem;
}

/* Media Queries para dispositivos móveis */
@media (max-width: 480px) {
    .container {
        margin: 0;
        padding: 0;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .menu-item {
        padding: 16px 18px;
    }
    
    .menu-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}