    /* Hero Section V2 */
    .ahc-hero-v2 {
        background-image: url('../assets/img/sobre-nosotros/herobanner.webp');
        background-position: center;
        color: var(--white);
        position: relative;
        z-index: 1;
        border-radius: 24px;
        max-width: 1280px;
        margin: 60px auto 50px;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #3D61A3CC;
            z-index: -1;
            border-radius: 24px;
        }

        & .ahc-container {
            padding: 50px 110px;

            @media (max-width: 600px) {
                padding: 50px 25px;
            }
        }

        & .ahc-hero-subtitle {
            font-weight: 400;
            font-size: 20px;
            line-height: 28px;
            margin-bottom: 10px;
        }

        & .ahc-hero-title {
            font-weight: 700;
            font-size: 40px;
            line-height: 45px;
            color: var(--lighter-blue);
            max-width: 600px;
            margin-bottom: 18px;

            @media (max-width: 600px) {
                font-size: 39px;
            }
        }

        & .ahc-hero-description {
            font-family: Lato;
            font-weight: 400;
            font-size: 20px;
            line-height: 28px;
            max-width: 600px;
        }
    }
/* ==========================================
   About Banner
   ========================================== */

.ahc-about-banner {
    width: 100%;
    background-color: #ffffff;
    padding: 52px 0 40px;
}

.ahc-about-banner__card {
    position: relative;
    width: 100%;
    height: 344px;
    border-radius: 24px;
    overflow: hidden;
    background-color: #17243D;
}

.ahc-about-banner__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Capa azul general, muy ligera */
.ahc-about-banner__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(61, 97, 163, 0.16);
    pointer-events: none;
}

/* Degradado principal igual al Figma */
.ahc-about-banner__card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(90deg, rgb(0, 13, 148, .9) -2%, rgb(0, 13, 148, .8) 27%, rgb(0, 13, 148, .7) 41%, rgba(61, 97, 163, 0.38) 54%, rgba(61, 97, 163, 0.10) 76%, rgba(61, 97, 163, 0.00) 100%);
    pointer-events: none;
}

.ahc-about-banner__content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 593px;
    padding: 55px 0 0 110px;
    color: #ffffff;
}

.ahc-about-banner__eyebrow {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.ahc-about-banner__content h2 {
    margin: 0 0 14px;
    color: #DFEEF8;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.02em;
}

.ahc-about-banner__text {
    margin: 0;
    max-width: 583px;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
}

/* Responsive */
@media (max-width: 1024px) {
    .ahc-about-banner__card {
        height: 310px;
    }

    .ahc-about-banner__content {
        max-width: 540px;
        padding: 42px 0 0 70px;
    }

    .ahc-about-banner__content h2 {
        font-size: 34px;
        line-height: 40px;
    }

    .ahc-about-banner__text {
        font-size: 17px;
        line-height: 25px;
    }
}

@media (max-width: 768px) {
    .ahc-about-banner {
        padding: 36px 0 56px;
    }

    .ahc-about-banner__card {
        height: auto;
        min-height: 420px;
        display: flex;
        align-items: flex-end;
    }

    .ahc-about-banner__image {
        object-position: center center;
    }

    .ahc-about-banner__card::before {
        background: rgba(61, 97, 163, 0.12);
    }

    .ahc-about-banner__card::after {
        background: linear-gradient(
            180deg,
            rgba(23, 36, 61, 0.04) 0%,
            rgba(23, 36, 61, 0.56) 48%,
            rgba(23, 36, 61, 0.96) 100%
        );
    }

    .ahc-about-banner__content {
        max-width: 100%;
        padding: 32px 24px;
    }

    .ahc-about-banner__eyebrow {
        font-size: 15px;
        line-height: 22px;
    }

    .ahc-about-banner__content h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .ahc-about-banner__text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .ahc-about-banner__card {
        min-height: 450px;
        border-radius: 20px;
    }

    .ahc-about-banner__content {
        padding: 28px 20px;
    }

    .ahc-about-banner__content h2 {
        font-size: 27px;
        line-height: 33px;
    }
}

    /* Featured Text Section */

    .ahc-featured-text {
        padding-top: 50px;
        padding-bottom: 55px;

        & p {
            font-weight: 700;
            font-size: 40px;
            line-height: 45px;
            text-align: center;
            max-width: 1050px;
            color: var(--light-blue);
            margin: 0 auto;

            @media (max-width: 600px) {
                font-size: 32px;
            }
        }

    }

    /* Nuestro proposito */

    .ahc-purpose {
        padding: 50px 0;

        & .ahc-container {
            max-width: 1440px;

            & .ahc-purpose-content {
                text-align: center;
                margin-bottom: 40px;

                & h2 {
                    font-size: 40px;
                    line-height: 45px;
                    color: var(--primary-blue);
                    margin-bottom: 23px;
                }

                & p {
                    font-size: 20px;
                    line-height: 28px;
                    text-align: center;
                    max-width: 1000px;
                    margin: 0 auto;
                }
            }

            & .ahc-purpose-cards {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 24px;
                padding: 0 60px;

                @media (max-width: 600px) {
                    padding: 0;
                }

                & .ahc-purpose-card {
                    width: calc(25% - 18px);
                    padding: 24px;

                    @media (max-width: 600px) {
                        width: 100%;
                    }

                    &:nth-last-of-type(odd) {
                        border-color: var(--accent-red)
                    }

                    &:nth-last-of-type(even) {
                        border-color: var(--primary-blue)
                    }

                    & .ahc-icon-img {
                        width: 74px;
                        height: 74px;
                        margin-bottom: 12px;
                    }

                    & h3 {
                        font-size: 24px;
                        line-height: 32px;
                        margin-bottom: 12px
                    }

                    & p {
                        font-size: 20px;
                        line-height: 28px;
                        margin-bottom: 25px
                    }
                }
            }
        }
    }
/* ==========================================
   Purpose Cards - Borders & Shadows
   ========================================== */

.ahc-purpose-card {
    border: 1px solid #EC1C24;
	border-radius: 16px;
    box-shadow: 0 6px 14px rgba(61, 97, 163, 0.48);
}

/* Alternar borde azul en cards pares */
.ahc-purpose-card:nth-child(even) {
    border-color: var(--primary-blue);
}

/* Mantener borde rojo en cards impares */
.ahc-purpose-card:nth-child(odd) {
    border-color: var(--accent-red);
}

    /* About Section */
.ahc-about.congreso{
	margin-top: 0;
}
    .ahc-about {
        & .ahc-pretitle {
            font-size: 20px;
            line-height: 28px;
            color: var(--light-blue);
            margin-bottom: 20px;
        }

        & ul {
            column-count: 2;
            margin-bottom: 20px;
            padding-left: 20px;

            & li {
                list-style: disc;
                color: var(--secondary-blue);
                font-weight: 700;
                font-size: 20px;
                line-height: 28px;
            }
        }

        & .ahc-post-description {
            font-size: 20px;
            line-height: 28px;
            color: var(--primary-blue);
        }
    }

    .ahc-timeline {
        margin-top: 100px;
        margin-bottom: 175px;

        & .ahc-timeline-container {
            max-width: 1080px;
            margin: 0 auto;

            & p {
                font-size: 20px;
                line-height: 28px;
                color: var(--light-blue);

                &.ahc-footer-text {
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 28px;
                    color: var(--primary-blue);
                    max-width: 600px;
                    margin: 0 auto;
                }
            }

            & h2 {
                font-size: 40px;
                line-height: 45px;
                text-align: center;
                color: var(--primary-blue);
                margin-bottom: 87px;
            }

            & ul {
                display: flex;
                flex-wrap: wrap;
                gap: 24px;
                margin-bottom: 38px;
                position: relative;

                @media (max-width: 600px) {
                    padding-left: 40px;
                }

                &:before {
                    content: '';
                    position: absolute;
                    top: -26px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 100vw;
                    height: 1px;
                    background-color: var(--primary-blue);

                    @media (max-width: 600px) {
                        left: 10px;
                        top: 0;
                        transform: translateY(55px);
                        height: calc(100% - 110px);
                        width: 1px;
                    }
                }

                & .ahc-timeline-item {
                    width: calc(20% - 20px);
                    padding: 12px;
                    border-color: var(--light-blue);
                    position: relative;

                    @media (max-width: 600px) {
                        width: 100%;
                    }

                    &:before {
                        content: '';
                        position: absolute;
                        top: -26px;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                        background-color: var(--white);
                        z-index: 1;

                        @media (max-width: 600px) {
                            left: -30px;
                            top: 50%;
                            width: 40px;
                            height: 40px;
                            transform: translate(-50%, -50%);
                        }
                    }

                    &:after {
                        content: '';
                        position: absolute;
                        top: -26px;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        width: 24px;
                        height: 24px;
                        border-radius: 50%;
                        z-index: 2;
                        box-shadow:
                            0px 1px 1px 0px rgba(0, 0, 0, 0.10),
                            0px 3px 3px 0px rgba(0, 0, 0, 0.09),
                            0px 6px 4px 0px rgba(0, 0, 0, 0.05),
                            0px 11px 4px 0px rgba(0, 0, 0, 0.01),
                            0px 17px 5px 0px rgba(0, 0, 0, 0.00);

                        @media (max-width: 600px) {
                            left: -30px;
                            top: 50%;
                            transform: translate(-50%, -50%);
                        }
                    }

                    &:nth-of-type(odd):after {
                        background-color: var(--light-blue);
                    }

                    &:nth-of-type(even):after {
                        background-color: #FBD2D3;
                    }

                    &:last-of-type {
                        background-color: var(--lighter-blue);

                        &:after {
                            background-color: var(--primary-blue);
                        }
                    }

                    & h3 {
                        font-size: 20px;
                        line-height: 28px;
                        color: #182741;
                        margin-bottom: 12px;
                    }

                    & p {
                        font-size: 16px;
                        line-height: 22px;
                        color: #434445;
                    }
                }
            }
        }
    }
/* About Congreso */

.ahc-about.congreso  .ahc-about-container {
    display: flex;
    align-items: start;
    gap: 50px;
    padding: 0 46px;
    box-sizing: border-box;
}
.ahc-about.congreso .ahc-about-video {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    max-width: 366px;
}
.ahc-about.congreso  .ahc-about-video .ahc-video-img {
    width: auto;
    border-radius: 10px;
}

.ahc-about.congreso .ahc-about-content {
    flex: 1;
    max-width: 800px;
}

.ahc-about.congreso .ahc-about-content h2 {
    color: var(--accent-red);
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.05em;
}
.ahc-about.congreso .ahc-about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 22px;
    font-size: 20px;
    letter-spacing: -0.02em;
}
/* About Dirigido */

.ahc-about.dirigido .ahc-about-content p{
	font-size: 20px;
}
/* ==========================================
   Timeline Cards - Border & Shadow
   ========================================== */

.ahc-timeline-item {
    background-color: #ffffff;
    border: 1px solid var(--primary-blue);
    border-radius: 16px;
    box-shadow:
        0 1px 3px rgba(0, 29, 77, 0.10),
        0 5px 5px rgba(0, 29, 77, 0.09),
        0 12px 7px rgba(0, 29, 77, 0.05),
        0 21px 8px rgba(0, 29, 77, 0.01);
    padding: 18px;
    box-sizing: border-box;
}

/* Si ya estás usando estas clases reutilizables */
.ahc-timeline-item.ahc-card-border {
    border: 1px solid var(--primary-blue);
}

.ahc-timeline-item.ahc-card-shadow {
    box-shadow:
        0 1px 3px rgba(0, 29, 77, 0.10),
        0 5px 5px rgba(0, 29, 77, 0.09),
        0 12px 7px rgba(0, 29, 77, 0.05),
        0 21px 8px rgba(0, 29, 77, 0.01);
}
    /* Organizadores y Experiencia */
    .ahc-organizers-experience {
        padding: 50px 0 100px;

        & .ahc-organizers-container {
            display: flex;
            gap: 60px;

            @media (max-width: 600px) {
                flex-direction: column;
            }

            &>div {
                flex: 1;
            }

            & .ahc-section-img {
                width: 100%;
                border-radius: 12px;
                margin-bottom: 30px;
                object-fit: cover;
                aspect-ratio: 16 / 9;
            }

            & .ahc-pretitle {
                font-size: 18px;
                line-height: 26px;
                color: var(--light-blue);
                margin-bottom: 16px;
                text-transform: uppercase;
                font-weight: 600;
            }

            & h2 {
                font-size: 32px;
                line-height: 40px;
                margin-bottom: 24px;
                font-weight: 700;

                &.ahc-title-red {
                    color: var(--accent-red);
                }

                &.ahc-title-blue {
                    color: var(--primary-blue);
                }
            }

            & p {
                font-size: 20px;
                line-height: 28px;
                color: #434445;
                margin-bottom: 24px;

                &.ahc-quote {
                    font-weight: 700;
                    color: var(--primary-blue);
                    margin-top: 32px;
                }
            }

            & ul {
                padding-left: 24px;
                margin-top: 20px;

                & li {
                    list-style-type: disc;
                    color: var(--primary-blue);
                    font-size: 20px;
                    line-height: 28px;
                    margin-bottom: 12px;
                    font-weight: 500;
                }
            }
        }
    }

    /* CTA Banner */
    .ahc-cta-banner {
        & .ahc-cta-container {
            background-color: var(--primary-blue);
            border-radius: 32px 32px 0 0;
            padding: 80px 40px;
            text-align: center;
            color: var(--white);
            max-width: 100%;
            margin-bottom: -30px;

            & h2 {
                font-size: 40px;
                line-height: 48px;
                margin-bottom: 20px;
                font-weight: 700;
                color: var(--white);
            }

            & p {
                font-family: var(--font-heading);
                font-size: 18px;
                line-height: 26px;
                margin-bottom: 40px;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
                font-weight: 600;
            }

            & .ahc-cta-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;

                @media (max-width: 600px) {
                    flex-direction: column;
                }
            }
        }
    }