/* Estilos Gerais */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Navbar Personalizada */
.navbar-brand {
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: var(--bs-primary) !important;
    /* Exemplo de cor para hover */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #007bff, #0056b3);
    /* Gradiente de azul */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 3.5rem;
}

/* Estilo para os Cards de Produto */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.product-card img {
    height: 250px;
    /* Altura fixa para as imagens */
    object-fit: cover;
    /* Garante que a imagem preencha o espaço sem distorcer */
}

.product-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card .card-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Botões Personalizados */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Cores de exemplo para os botões e títulos dos cards (você pode personalizar) */
.text-purple {
    color: #6f42c1;
}

.btn-purple {
    background-color: #6f42c1;
    border-color: #6f42c1;
}

.btn-purple:hover {
    background-color: #5a359d;
    border-color: #5a359d;
}

.text-orange {
    color: #fd7e14;
}

.btn-orange {
    background-color: #fd7e14;
    border-color: #fd7e14;
}

.btn-orange:hover {
    background-color: #e06d0b;
    border-color: #e06d0b;
}

/* Seção de Chamada para Ação (CTA) */
.cta-section {
    background: linear-gradient(to right, #28a745, #218838);
    /* Gradiente de verde */
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a {
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--bs-primary) !important;
}

/* Responsividade Básica (ajustes para telas menores) */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .product-card .card-title {
        font-size: 1.3rem;
    }
}