/* Hero Section */
.hero-bens {
    background: linear-gradient(rgba(0, 51, 102, 0.4), rgba(0, 51, 102, 0.6)),
        url('https://images.unsplash.com/photo-1666593406808-90611fc156a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 280px 0 100px;
    min-height: 80vh;
}

.hero-bens h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-bens p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Produtos */
.produtos-section {
    padding: 80px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.produto-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.produto-img {
    height: 220px;
    overflow: hidden;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.produto-card:hover .produto-img img {
    transform: scale(1.1);
}

.produto-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produto-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.produto-content p {
    margin-bottom: 20px;
    color: #555;
}

.destaque {
    background-color: rgba(255, 102, 0, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.destaque strong {
    color: var(--secondary);
}

.btn-read {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
    margin-top: auto;
    align-self: flex-start;
}

.btn-read:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)),
        url('../img/cta-section.avif');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 15px;
    }

    .hero-bens {
        padding: 150px 0 80px;
    }

    .hero-bens h1 {
        font-size: 2rem;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
    }
}
