body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

:root {
    --primary-color: #7f0fba;
    --yellow-color: #fec435;
    --dark-color: #000000;
    --gray-color: #eeeeec;
    --light-color: #ffffff;
    --whatsapp-color: #25D366;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand img {
    max-height: 50px;
}

#bannerCarousel .carousel-item {
    height: 60vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
}

#bannerCarousel .carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
}

.section-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

#sobre, #categorias, #localizacao {
    padding: 60px 0;
}

#fotos-loja, #marcas {
    padding: 60px 0;
    background-color: #e9ecef;
}

.about-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.carousel-inner {
    padding-left: 10px;
}

.category-card {
    background-color: var(--yellow-color);
    color: var(--dark-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,.15);
    color: var(--dark-color);
}

#fotos-loja .carousel-item img {
    border-radius: 0.75rem;
    height: 450px;
    object-fit: cover;
}

#marcas .brand-card {
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
    width: 100%;
    padding: 2px;
    border-radius: 26px;
    margin-bottom: 20px;
    box-shadow: -5px 8px 31px -2px rgba(0,0,0,0.75);
    -webkit-box-shadow: -5px 8px 8px -2px rgba(0,0,0,0.25);
    -moz-box-shadow: -5px 8px 31px -2px rgba(0,0,0,0.75);
}
#marcas .brand-card img {
    border-radius: 24px !important;
}

#marcas .carousel-control-prev-icon,
#marcas .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

.brand-logo {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

#mapa {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

footer {
    background-color: var(--dark-color);
    color: var(--light-color);
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}
footer a:hover {
    color: var(--light-color);
}
.social-icons a {
    color: var(--light-color);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: var(--primary-color);
}

.whatsapp-float {
    position: fixed;
    width: auto;
    bottom: 25px;
    right: 25px;
    background-color: var(--whatsapp-color);
    color: var(--light-color);
    border-radius: 50px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 20px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 2px 4px 8px rgba(0,0,0,0.4);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
    .card {
        margin-bottom: 1rem;
    }
}