/* =========================================
   PORTFOLIO PREMIUM CARDS — ONELINK
========================================= */

.reviews-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.review-1 {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.45s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(15, 15, 15, 0.06);
    height: 100%;
}

/* Hover general */
.review-1:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(88, 72, 255, 0.18);
}

/* Imagen */
.portfolio-img {
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
}

/* Overlay elegante */
.portfolio-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,10,0.55),
        rgba(10,10,10,0.05)
    );
    opacity: 0;
    transition: 0.4s ease;
    z-index: 1;
}

.review-1:hover .portfolio-img::before {
    opacity: 1;
}

/* Imagen tamaño */
.portfolio-img img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Zoom elegante */
.review-1:hover .portfolio-img img {
    transform: scale(1.06);
}

/* Contenido */
.review-1-txt {
    padding: 0px;
}

/* Categoría */
.review-1 .section-id {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7d7d7d;
    margin-bottom: 14px;
}

/* Título */
.review-1 h5 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #111111;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

/* Hover título */
.review-1:hover h5 {
    color: #008cff;
}

/* Texto */
.review-1 p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 28px;
}

/* Botón */
.review-1 .btn {
    border-radius: 16px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.35s ease;
    background: linear-gradient(135deg, #007aff, #0264cf);
    border: none;
    color: #fff;
    box-shadow: 0 10px 30px rgba(108, 77, 246, 0.22);
}

/* Hover botón */
.review-1 .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(108, 77, 246, 0.35);
    background: linear-gradient(135deg,  #007aff, #0264cf);
}

/* Efecto click */
.review-1:active {
    transform: scale(0.98);
}

/* Responsive */
@media (max-width: 991px) {

    .portfolio-img img {
        height: 420px;
    }

    .review-1 h5 {
        font-size: 26px;
    }

}

@media (max-width: 767px) {

    .portfolio-img img {
        height: 380px;
    }

    .review-1-txt {
        padding: 24px;
    }

    .review-1 h5 {
        font-size: 24px;
    }

    .review-1 p {
        font-size: 15px;
    }

}



/* CENTRAR LAS 2 TARJETAS EN EL MEDIO */
.pricing-2-wrapper .row{
    justify-content:center;
    gap:30px;
}

/* TAMAÑO MÁS PRO */
.pricing-2-wrapper .col-md-4{
    flex:0 0 380px;
    max-width:380px;
}