body {
    font-family: 'Poppins', sans-serif;
}

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
                url('../images/hero.jpg') center/cover;
}

.hero-carousel {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 90vh;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 0 15px;
}

/* Animación suave tipo salón premium */
.hero-carousel .carousel-item {
    animation: zoomHero 10s ease-in-out infinite;
}

@keyframes zoomHero {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}


.btn-gold {
    background-color: #c9a24d;
    color: #000;
    border: none;
}

.btn-gold:hover {
    background-color: #b08c3c;
    color: #000;
}

.service-card {
    padding: 30px 20px;
    border: none;
    box-shadow: 0 0 20px rgba(0,0,0,.05);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #c9a24d;
}

.product-card {
    border: none;
}
