* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Poppins', sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background: rgba(62, 0, 127, 0.95);
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
}

.top-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #d1b3ff;
}

header { 
    display: flex; 
    justify-content: flex-end; 
    align-items: center;
    position: relative;
    z-index: 100;
}

.whatsapp-btn {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00bf50;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.whatsapp-icon {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.logo { 
    max-width: 300px; 
    height: auto;
    margin-bottom: 3rem;
}

.hero { 
    text-align: center; 
    padding: 6rem 2rem; 
    color: white; 
    flex-grow: 1;
}
.hero h1 { 
    font-size: 2.5rem; 
    font-weight: 700; 
}
.hero h2 { 
    font-size: 1.5rem; 
    margin: 1rem auto 2rem auto; 
    max-width: 700px; 
    opacity: 0.9; 
}

.lojas { 
    background: rgba(255, 255, 255, 0.05); 
    padding: 5rem 2rem; 
    text-align: center; 
    opacity: 0; 
    transform: translateY(20px); 
    animation: fadeInUp 0.8s ease forwards; 
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
.lojas h2 { 
    color: white; 
    font-size: 2rem; 
    font-weight: 500; 
    margin-bottom: 3rem;  
}
.lojas-grid { 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 2rem; 
    max-width: 1000px; 
    margin: 0 auto; 
    align-items: stretch;
}
.loja-item { 
    flex: 0 1 220px; 
    width: 220px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    align-items: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 15px;
    min-height: 220px; 
    box-sizing: border-box;
}
.loja-item a { 
    display: block; 
    transition: transform 0.3s ease; 
    text-decoration: none; 
    width: 100%;
}
.logo-wrapper { 
    height: 150px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 1rem; 
    border-radius: 10px;
    flex-shrink: 0;
}
.loja-item img { 
    max-width: 80%; 
    max-height: 100%; 
    width: auto; 
    height: auto; 
    object-fit: contain;
}
.loja-item p { 
    color: white; 
    font-size: 1rem; 
    font-weight: 300; 
    opacity: 0.9; 
    text-align: center; 
    margin: 0;
}
.loja-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.2);
}
.loja-item a:hover .logo-wrapper { 
    transform: scale(1.05); 
}

footer { 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; 
    padding: 3rem 1rem; 
    background: rgba(62, 0, 127, 0.95); 
    color: white; 
    font-size: 0.9rem; 
    font-weight: 300; 
    gap: 1rem;
}
footer a {
    color: #fff;
    text-decoration: underline;
}

html { scroll-behavior: smooth; }

@media (max-width: 480px) {
    header { 
        padding: 2rem 1rem; 
        justify-content: center;
    }
    .logo { max-width: 200px; }
    .hero h1 { font-size: 2rem; }
    .hero h2 { font-size: 1rem; }
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon {
        width: 70%;
        height: 70%;
    }
    .top-bar {
        font-size: 0.8rem;
    }
}
