html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Ajuste para o menu fixo */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfdfd;
    color: #333;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #6a0dad !important;
}

.nav-link {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: #6a0dad !important;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #6a0dad; /* Roxo principal do seu sistema */
}

.brand-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #555;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #333;
    position: relative;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.product-info {
    padding: 1.25rem;
    text-align: center;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6a0dad;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-price {
    color: #6a0dad;
    font-weight: bold;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #6a0dad;
    box-shadow: 0 0 0 0.25rem rgba(106, 13, 173, 0.15);
}

.btn-brand-purple {
    background-color: #6a0dad;
    color: white;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-brand-purple:hover {
    background-color: #560a8c;
    color: white;
}

/* Estilo para o Balão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* Estilo para Ícones Sociais no Rodapé */
.social-icon {
    font-size: 1.8rem;
    color: white;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #f0f0f0; /* Um leve brilho ao passar o mouse */
}