/* Con sentido social — solo contenido (el menú no se modifica) */

body.dpc-sentido-social {
    --dpc-social-cyan: #46aee5;
    --dpc-social-purple: #3f3d99;
}

/* Hero — foto visible + movimiento */
.dpc-social-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: min(38rem, 82vh);
    color: #1e293b;
}

.dpc-social-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #1a2744;
}

.dpc-social-hero__photo {
    position: absolute;
    inset: -12%;
    background-size: cover;
    background-position: center 30%;
    will-change: transform;
    animation: dpc-social-photo-kenburns 22s ease-in-out infinite alternate;
}

.dpc-social-hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 85% 65% at 15% 25%, rgb(70 174 229 / 0.2), transparent 50%),
        radial-gradient(ellipse 75% 55% at 88% 75%, rgb(63 61 153 / 0.18), transparent 48%),
        linear-gradient(
            105deg,
            rgb(255 255 255 / 0.42) 0%,
            rgb(255 255 255 / 0.28) 38%,
            rgb(248 250 255 / 0.35) 68%,
            rgb(255 255 255 / 0.5) 100%
        );
    animation: dpc-social-gradient-shift 18s ease-in-out infinite alternate;
}

.dpc-social-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    animation: dpc-social-orb-float 14s ease-in-out infinite alternate;
    pointer-events: none;
}

.dpc-social-hero__orb--cyan {
    width: 16rem;
    height: 16rem;
    top: 8%;
    left: 5%;
    background: var(--dpc-social-cyan);
}

.dpc-social-hero__orb--purple {
    width: 18rem;
    height: 18rem;
    bottom: 10%;
    right: 8%;
    background: var(--dpc-social-purple);
    animation-delay: -4s;
}

.dpc-social-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    gap: 1.75rem;
}

@media (min-width: 1024px) {
    .dpc-social-hero__inner {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 2.5rem;
        padding-top: 3rem;
        padding-bottom: 3.5rem;
    }
}

.dpc-social-hero__logo-wrap {
    position: relative;
    flex-shrink: 0;
    width: min(100%, 18rem);
    padding: 0.75rem;
    border-radius: 1.25rem;
    background: rgb(255 255 255 / 0.85);
    box-shadow: 0 12px 40px rgb(63 61 153 / 0.1);
}

.dpc-social-hero__logo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: dpc-social-logo-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.dpc-social-hero__logo-glow {
    display: none;
}

.dpc-social-hero__copy {
    max-width: 36rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    background: rgb(255 255 255 / 0.72);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgb(15 23 42 / 0.08);
}

.dpc-social-hero__eyebrow {
    display: inline-block;
    margin: 0;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgb(70 174 229 / 0.35);
    background: rgb(70 174 229 / 0.1);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dpc-social-purple);
}

.dpc-social-hero__title {
    margin-top: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--dpc-social-purple);
}

.dpc-social-hero__intro {
    margin-top: 1rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #475569;
}

/* Historias */
.dpc-sentido-social .dpc-social-story-card {
    border-color: rgb(70 174 229 / 0.15);
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dpc-sentido-social .dpc-social-story-card:hover {
    border-color: rgb(70 174 229 / 0.35);
    box-shadow: 0 12px 32px rgb(63 61 153 / 0.08);
    transform: translateY(-2px);
}

.dpc-sentido-social .dpc-social-story-card__cat {
    color: var(--dpc-social-cyan);
}

.dpc-sentido-social .dpc-social-story-card__title a:hover {
    color: var(--dpc-social-purple) !important;
}

.dpc-sentido-social .dpc-social-story-card__loc {
    color: var(--dpc-social-purple) !important;
}

.dpc-sentido-social .dpc-social-story-card__link {
    color: var(--dpc-social-cyan);
}

.dpc-sentido-social .dpc-social-section-title {
    color: var(--dpc-social-purple);
}

@keyframes dpc-social-logo-enter {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(0.5rem);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes dpc-social-photo-kenburns {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.12) translate3d(-2.5%, -1.5%, 0);
    }
}

@keyframes dpc-social-gradient-shift {
    0% {
        opacity: 0.92;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.03);
    }
}

@keyframes dpc-social-orb-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(2rem, -1.25rem) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .dpc-social-hero__logo,
    .dpc-social-hero__orb,
    .dpc-social-hero__photo,
    .dpc-social-hero__gradient {
        animation: none !important;
    }

    .dpc-social-hero__photo {
        inset: -5%;
        transform: none;
    }
}
