* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0f0f0f 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(255, 107, 53, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '🚗 🏍️ 🚙 🚕 🏍️ 🚗';
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    pointer-events: none;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    text-align: center;
    padding: 40px 0;
    color: white;
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 15px rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}



.lojas {
    padding: 40px 0;
}

.lojas .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.loja {
    background: linear-gradient(145deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.loja:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 0 25px rgba(255, 107, 53, 0.1);
}

.loja::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffd700, #ff6b35);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.loja::after {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.loja:hover::before {
    opacity: 1;
}

.loja h2 {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contato p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.whatsapp-btn {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 15px 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.endereco {
    margin-top: 15px;
}

.endereco p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: center;
}

.map-widget {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 15px;
    margin-top: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.map-widget:hover {
    transform: scale(1.02);
}

footer {
    text-align: center;
    padding: 30px 0;
    color: white;
    opacity: 0.8;
}

/* Mobile First - Responsividade */
@media (max-width: 768px) {
    .logo {
        max-width: 120px;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .loja {
        padding: 20px;
    }
    
    .loja h2 {
        font-size: 1.5rem;
    }
    
    .whatsapp-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .map-widget {
        height: 180px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 40px 0;
    }
    
    .logo {
        max-width: 100px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .lojas .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .loja {
        padding: 15px;
    }
}

/* Orientação horizontal em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    header {
        padding: 20px 0;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .lojas {
        padding: 20px 0;
    }
    
    .loja {
        padding: 15px;
    }
}