/* WRAP full width */
.adp-cortes-wrap{
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 12px;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* TRACK: centra si entran pocas, scrollea si hay muchas */
.adp-cortes-track{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 10px 2px 20px;
    min-width: 0;
    width: 100%;
}

/* Cards responsive */
.adp-corte-card{
    scroll-snap-align: start;
    flex: 0 0 clamp(260px, 75vw, 340px);
    max-width: 340px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    color: #111;
    position: relative;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

/* Imagen */
.adp-corte-img img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.adp-corte-img-placeholder{
    width: 100%;
    height: 240px;
    background: #f1f1f1;
}

/* Cuerpo */
.adp-corte-body{
    padding: 24px 24px 26px;
    position: relative;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Título */
.adp-corte-title{
    margin: 0 0 12px;
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: #111;
}

/* Texto */
.adp-corte-text{
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: #4f5965;
    opacity: 1;
    margin-bottom: 22px;
}

/* Botón */
.adp-corte-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg,#f6c27a 0%, #c14fd8 55%, #4f63e6 100%);
    font-weight: 700;
    width: fit-content;
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
    transition: transform .25s ease, box-shadow .25s ease;
    margin-top: auto;
}

.adp-corte-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.14);
    color: #fff;
}

.adp-corte-btn span{
    font-size: 16px;
}

/* Decoración paw mucho más sutil */
.adp-corte-paw{
    position: absolute;
    right: 16px;
    bottom: 14px;
    font-size: 42px;
    opacity: .06;
    transform: rotate(-10deg);
    pointer-events: none;
    color: #e91e63;
}

/* Responsive */
@media (max-width: 900px){
    .adp-cortes-track{
        gap: 18px;
        padding-bottom: 14px;
    }

    .adp-corte-card{
        flex: 0 0 clamp(240px, 82vw, 300px);
        max-width: 300px;
        border-radius: 24px;
    }

    .adp-corte-img img,
    .adp-corte-img-placeholder{
        height: 210px;
    }

    .adp-corte-body{
        padding: 20px 18px 22px;
        min-height: 190px;
    }

    .adp-corte-title{
        font-size: 24px;
    }

    .adp-corte-text{
        font-size: 15px;
        line-height: 1.55;
    }

    .adp-corte-btn{
        padding: 11px 16px;
        font-size: 14px;
    }
}
