/* Configurações Gerais */
body {
    background-color: #f8f9fa; /* Off-white clássico */
    color: #000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background-color: #000 !important;
}

/* Estilização do Card de Produto */
.card {
    background: #ffffff;
    border: 1px solid #000; /* Borda preta solicitada */
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.02);
}

.card-img-top {
    border-bottom: 1px solid #000; /* Linha separando a imagem do texto */
    object-fit: contain;
    background: #fff;
}

/* Textos */
.card-title {
    color: #000; /* Título preto */
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px;
}

.preco-produto {
    color: #6f42c1 !important; /* Roxo (Purple do Bootstrap) */
    font-weight: 800;
    font-size: 1.5rem;
}

/* Botão Personalizado */
.btn-roxo {
    background-color: #6f42c1;
    color: #fff !important;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    padding: 12px;
    transition: background 0.3s;
}

.btn-roxo:hover {
    background-color: #5a32a3; /* Roxo um pouco mais escuro no hover */
    color: #fff;
}
/* Estilização do Banner Responsivo */
.banner-topo {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    border-bottom: 2px solid #000;
    overflow: hidden;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Garante que quebre linha no celular */
}

.banner-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.badge-new {
    background-color: #6f42c1;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.banner-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    margin-top: 15px;
}

.banner-text h1 span {
    color: #6f42c1;
}

.banner-text p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
}

.btn-banner {
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    border: 2px solid #000;
}

.btn-banner:hover {
    background-color: #6f42c1;
    border-color: #6f42c1;
    color: #fff;
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.banner-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.1));
    transform: rotate(-5deg); /* Dá um ar dinâmico/esportivo */
    transition: 0.5s;
}

.banner-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Ajustes para Celular */
@media (max-width: 768px) {
    .banner-text {
        text-align: center;
    }
    .banner-text h1 {
        font-size: 2.5rem;
    }
    .banner-image {
        margin-top: 30px;
    }
}
.card-produto {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.card-produto:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.card-produto img {
    transition: transform 0.5s ease;
}

.card-produto:hover img {
    transform: scale(1.1); /* Zoom suave na foto */
}