body {
    font-family: 'Segoe UI', sans-serif;
    background: #0b1020;
    color: #f5f5f5;
}

.gold {
    color: #d4af37;
}

.glass-nav {
    backdrop-filter: blur(10px);
    background: rgba(10, 20, 40, .7);
}

.hero {
    height: 100vh;
    background: radial-gradient(circle at top, #142850, #0b1020);
}

.section-dark {
    padding: 80px 0;
}

.section-light {
    padding: 80px 0;
    background: #101b3a;
}

.btn-gold {
    background: linear-gradient(45deg, #d4af37, #f5d76e);
    color: #000;
    border: none;
    font-weight: bold;
    transition: .3s;
}

.btn-gold:hover {
    transform: translateY(-4px);
}

.glass-card {
    background: rgba(255, 255, 255, .06);
    padding: 30px;
    border-radius: 16px;
    transition: .4s;
}

.glass-card:hover {
    transform: translateY(-12px);
}

.step {
    font-size: 1.2rem;
    padding: 20px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    z-index: 999;
}

.whatsapp-float img {
    width: 100%;
}

.footer {
    background: #000;
    padding: 20px;
}

.hero-carousel {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 40, .65);
}

.hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.portfolio-item img {
    width: 100%;
    transition: .5s;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.testimonial {
    background: rgba(255, 255, 255, .06);
    padding: 25px;
    border-radius: 15px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .07);
    padding: 25px;
    border-radius: 16px;
    height: 100%;
}

.service-full ul {
    padding-left: 18px;
}

.price {
    font-size: 1.1rem;
    color: #d4af37;
}

.testimonial-card {
    background: rgba(255, 255, 255, .07);
    padding: 25px;
    border-radius: 16px;
    height: 100%;
    /* clave */
    display: flex;
    /* clave */
    flex-direction: column;
    /* clave */
    justify-content: space-between;
}

#testimoniosCarousel .carousel-item {
    min-height: 260px;
    /* ajusta según diseño */
}

@media (max-width: 768px) {
    #testimoniosCarousel .carousel-item {
        min-height: auto;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }
}

#testimoniosCarousel,
#testimoniosCarousel .carousel-inner,
#testimoniosCarousel .carousel-item {
    height: auto !important;
    min-height: unset !important;
}

#testimoniosCarousel .row {
    align-items: stretch;
}

@media (max-width: 768px) {

    #testimoniosCarousel {
        padding-bottom: 0;
    }

    #testimoniosCarousel .carousel-item {
        display: block;
    }

    .testimonial-card {
        height: auto;
    }
}