/* HERO PARALLAX */
.hero-about {
    height: 420px;
    background: url('../imagens/sobre/hero.png') center/cover fixed;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* IMAGENS */
.about-img {
    width: 90%;
    border-radius: 20px;
    transition: 0.3s;
}

.about-img:hover {
    transform: scale(1.03);
}

/* CARDS ESSENCIA */
.card-essencia {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card-essencia:hover {
    transform: translateY(-6px);
}

/* BENEFÍCIOS */
.benefit-card {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-6px);
}

/* DEPOIMENTOS */
.testimonial-card {
    padding: 25px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ANIMAÇÕES */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SCROLL-REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-about .hero-box {
        padding: 30px;
        text-align: center;
    }
    .hero-about h1 {
        font-size: 32px;
    }
}