.section-light {
    background-color: var(--background-light);
}

/* ——— Categories ——— */

.cat-card {
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background: var(--primary-0);
    box-shadow: 0 4px 8px var(--shadow);
    overflow: hidden;
    cursor: pointer;
}

.cat-card .img-placeholder {
    width: 100%;
    height: 194px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;

    display: flex;
    align-items: flex-end;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



        /* Efecto zoom en hover */
        .cat-card:hover .img-placeholder {
            transform: scale(1.1);
        }


.cat-card .img-placeholder .card-text::before {
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.70) 0%, rgba(0, 0, 0, 0.20) 100%);
    content: " ";
    width: 900px;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    position: absolute;
    overflow: hidden;
    z-index: -1;

}

.cat-card .card-text {
    color: var(--primary-0);
    display: block;
    font-size: 12px;
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 32px;
    z-index: 2;
}


/* ——— Why choose ——— */


.why-card {
    background: var(--primary-0);
    border-radius: 8px;
    padding: var(--sp-40);
    gap: var(--sp-24);
    box-shadow: 0 4px 8px var(--shadow);


        /* Estados iniciales (invisibles) */
        opacity: 0;
        transform: translateY(50px);
        transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Delays secuenciales para cada card */
.why-card:nth-child(1) { transition-delay: 0.2s; }
.why-card:nth-child(2) { transition-delay: 0.4s; }
.why-card:nth-child(3) { transition-delay: 0.6s; }
.why-card:nth-child(4) { transition-delay: 0.8s; }

.why-card img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--secondary-500);
}

/* Estado final (visibles) */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ——— Footer ——— */
footer {
    background: #0b1120;
    color: var(--primary-0);
}

.footer-social ul {
    list-style: none;
    display: inline-flex;
    gap: 16px;
}

.footer-social ul a {
    padding: 10px 12px;
    border-radius: 16px;
    display: block;
}

.footer-social a:hover {
    opacity: 0.5;
    color: var(--secondary-200);
}

.footer-social ul a:hover {
    background-color: var(--secondary-500);
}

footer .colum-flex {
    min-width: 220px;
    text-align: right;

}

footer h4 {

    text-transform: uppercase;
}

footer .item-col {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

footer a {
    color: var(--primary-0);
    text-decoration: none;
    font-size: 14px;
}

footer a:hover {
    color: var(--primary-300);

}

.copyright {
    text-align: center;
    font-size: 12px;
    color: var(--secondary-200);
}


/* ——— Placeholder utility ——— */
.img-placeholder,
.icon-placeholder {
    background: #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 12px;
}



/* ——— CTA banner ——— */
.cta {
    background: var(--dark);
    color: #fff;
    position: relative;
    padding: 120px 32px;
    text-align: left;
    height: 655px;
    align-content: center;
}

.cta:before {
    background: #1967d261;
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    position: absolute;
    overflow: hidden;
    z-index: 0;
}

.cta-content {
    max-width: 65%;
}