/* ===================================================================================================================
                                                     NAVBAR
====================================================================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 25, 50, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all .4s ease;
}

.nav-container {
    width: 92%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

/* LOGO */

.nav-logo img {
    height: 145px;
    transition: transform .3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

/* MENU DESKTOP */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a,
.dropdown span {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

/* Línea animada */
.nav-menu a::after,
.dropdown span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #FFCF60;
    transition: width .3s ease;
}

.nav-menu a:hover::after,
.dropdown:hover span::after {
    width: 100%;
}

/* BOTÓN DONAR*/

.nav-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0f2854;
    text-decoration: none;
    background: linear-gradient(135deg, #FFCF60, #FFB300);
    border-radius: 50px;
    overflow: hidden;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.nav-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    transform: rotate(0deg);
    transition: opacity .4s ease;
    opacity: 0;
}

.nav-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .7),
            transparent);
    transform: translateX(-100%);
    transition: transform .6s ease;
}

/* HOVER */

.nav-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn:hover::after {
    transform: translateX(100%);
}

/* MENU DESKTOP*/

.dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 45px;
    left: 0;
    width: 420px;
    padding: 30px;
    background: rgba(8, 25, 52, 0.97);
    backdrop-filter: blur(15px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .35s ease;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu a {
    font-size: 17px;
    color: white;
}

/* Menu Responsive */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: white;
    transition: all .4s ease;
}

/* Cuando está activo */

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 900;
}

@media (max-width: 1350px) {

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 360px;
        background: linear-gradient(180deg,
                #081a34 0%,
                #0b1e3d 40%,
                #061426 100%);
        backdrop-filter: blur(18px);
        flex-direction: column;
        align-items: flex-start;
        padding: 140px 50px;
        gap: 30px;
        transition: right .5s cubic-bezier(.4, 0, .2, 1);
        z-index: 1000;
        box-shadow: -20px 0 60px rgba(0, 0, 0, .6);
    }

    .nav-menu::before {
        content: "";
        position: absolute;
        top: 120px;
        left: 35px;
        width: 2px;
        height: 70%;
        background: linear-gradient(to bottom,
                #7AB2B2,
                transparent);
        opacity: .25;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a,
    .dropdown span {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: .5px;
        position: relative;
        padding-left: 20px;
        transition: all .35s ease;
    }

    .nav-menu a:hover,
    .dropdown span:hover {
        color: #7AB2B2;
        transform: translateX(8px);
    }

    /* Animación escalonada */
    .nav-menu.active a,
    .nav-menu.active .dropdown {
        opacity: 0;
        transform: translateX(30px);
        animation: menuReveal .5s forwards;
    }

    .nav-menu.active a:nth-child(1) {
        animation-delay: .1s;
    }

    .nav-menu.active a:nth-child(2) {
        animation-delay: .15s;
    }

    .nav-menu.active a:nth-child(3) {
        animation-delay: .2s;
    }

    .nav-menu.active a:nth-child(4) {
        animation-delay: .25s;
    }

    .nav-menu.active a:nth-child(5) {
        animation-delay: .3s;
    }

    .nav-menu.active a:nth-child(6) {
        animation-delay: .35s;
    }

    .nav-menu.active a:nth-child(7) {
        animation-delay: .4s;
    }

    @keyframes menuReveal {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mega-menu {
        position: static;
        width: 100%;
        display: none;
        background: transparent;
        box-shadow: none;
        grid-template-columns: 1fr;
        padding: 10px 0 0 30px;
        gap: 10px;
    }

    .mega-menu a {
        font-size: 15px;
        opacity: .8;
    }

    .mega-menu a:hover {
        opacity: 1;
    }

    .dropdown.open .mega-menu {
        display: grid;
    }

    .nav-menu .nav-btn {
        width: 85%;
        margin-top: 40px;
        text-align: center;
        border-radius: 40px;
        color: #0f2854;
    }

}


@media (max-width: 493px) {

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100% !important;
        /* fuerza cerrado */
        width: 85%;
        height: 100vh;
        padding: 120px 35px;
        background: linear-gradient(180deg,
                #071a33 0%,
                #0b1e3d 60%,
                #061426 100%);
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        transition: right .45s cubic-bezier(.4, 0, .2, 1);
    }

    .nav-menu.active {
        right: 0 !important;
    }

    /* Asegura que no quede visible accidentalmente */
    .nav-menu:not(.active) {
        visibility: hidden;
    }

    .nav-menu.active {
        visibility: visible;
    }

    .nav-menu a,
    .dropdown span {
        font-size: 20px;
        font-weight: 500;
    }

    .mega-menu {
        padding-left: 20px;
    }

    /* Toggle siempre arriba derecha */
    .nav-toggle {
        display: flex;
        margin-left: auto;
        z-index: 1200;
    }

}

/* ===================================================================================================================
                                                     HERO VIDEO
====================================================================================================================== */

.hero-video {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* VIDEO DE FONDO */

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* OVERLAY OSCURO */

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .35) 0%,
            rgba(0, 0, 0, .6) 50%,
            rgba(5, 15, 30, .9) 100%);
    z-index: 2;
}

/* CONTENIDO HERO */

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 8%;
    max-width: 1070px;
    color: white;
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 700;
    text-align: start;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 25px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* BOTON */

.hero-cta {
    display: inline-block;
    padding: 16px 48px;
    border: 3px solid rgba(255, 255, 255, .6);
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all .35s ease;
}

.hero-cta:hover {
    background: #7AB2B2;
    color: #0f2854;
    border-color: #7AB2B2;
}

.hero-video::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom,
            transparent,
            #061426);
    z-index: 4;
    pointer-events: none;
}


@media (max-width: 1350px) {

    .hero-content {
        padding-left: 7%;
        max-width: 830px;
    }

    .hero-content h1 {
        font-size: 55px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .hero-cta {
        padding: 14px 40px;
    }

}

@media (max-width: 768px) {

    .hero-content {
        padding: 0 40px;
        max-width: 600px;
    }

    .hero-content h1 {
        font-size: 42px;
        text-align: start;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 15px;
        max-width: 500px;
    }

    .hero-cta {
        padding: 14px 30px;
    }

}

@media (max-width: 592px) {

    .hero-content {
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 25px;
        text-align: justify;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 17px;
        line-height: 1.7;
        text-align: justify;
        max-width: 92%;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
        padding: 14px 0;
    }

}

@media (max-width: 393px) {

    .hero-content h1 {
        font-size: 20px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
        max-width: 92%;
    }

    .hero-cta {
        width: 100%;
    }

}

/* ===================================================================================================================
                                                     IMPACT SECTION 
====================================================================================================================== */

.impact-documental {
    background: #F5F1E8;
    color: #071421;
    padding: 220px 8%;
    position: relative;
    overflow: hidden;
}

.impact-documental::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(7, 20, 33, 0.05), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(7, 20, 33, 0.03), transparent 50%);
    pointer-events: none;
}

.impact-wrapper {
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.impact-text {
    max-width: 1000px;
    margin-bottom: 120px;
}

.impact-label {
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: .5;
}

.impact-text h2 {
    font-size: 58px;
    text-align: start;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 20px;
}

.impact-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.impact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    transition: all .9s cubic-bezier(.2, .8, .2, 1);
}

.impact-item.reveal {
    opacity: 1;
    transform: translateY(0);
}

.impact-item:hover {
    transform: translateY(-6px);
}

.impact-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(12px);
    position: relative;
    transition: .4s;
}

.impact-icon {
    width: 200px;
    height: 200px;
}

.impact-icon img {
    width: 350px;
    height: 160px;
}

.impact-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transition: .4s;
}

.impact-item.reveal .impact-icon::after {
    opacity: 1;
}

.impact-item:hover .impact-icon {
    transform: scale(1.1);
}

.impact-value {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 12px;
    color: #0a0e0f;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    position: relative;
}

.impact-value::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(122, 178, 178, .25), transparent 70%);
    opacity: 0;
    transition: .4s;
}

.impact-item.reveal .impact-value::after {
    opacity: 1;
}

.impact-value .unit {
    font-size: 25px;
    margin-left: 10px;
    opacity: .6;
}

.impact-item p {
    font-size: 17px;
    opacity: .7;
    letter-spacing: .5px;
    text-align: center;
}

.impact-divider {
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg,
            transparent,
            rgba(255, 255, 255, .25),
            transparent);
    position: relative;
}

.impact-divider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(122, 178, 178, .2);
    filter: blur(6px);
    opacity: .3;
}

.impact-footer {
    margin-top: 100px;
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(7, 20, 33, 0.6);
    position: relative;
    z-index: 2;
}

/* línea arriba del texto */
.impact-footer::before {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    margin: 0 auto 20px auto;
    background: linear-gradient(90deg,
            transparent,
            rgba(7, 20, 33, 0.2),
            transparent);
}

@media (max-width:1100px) {

    .impact-documental {
        padding: 150px 10%;
    }

    .impact-text {
        margin-bottom: 80px;
    }

    .impact-text h2 {
        font-size: 40px;
        line-height: 1.4;
    }

    .impact-stats {
        gap: 40px;
    }

    .impact-icon {
        width: 180px;
        height: 180px;
    }

    .impact-icon img {
        width: 470px;
        height: 170px;
    }

    .impact-value {
        font-size: 52px;
    }
}

@media (max-width:430px) {

    .impact-stats {
        flex-direction: column;
        gap: 60px;
    }

    .impact-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .impact-label {
        display: block;
        text-align: center;
        font-size: 18px;
    }

    .impact-divider {
        display: none;
    }

    .impact-documental {
        padding: 100px 8%;
    }

    .impact-text h2 {
        font-size: 28px;
        text-align: center;
    }

    .impact-value {
        font-size: 52px;
    }
}

/* ===================================================================================================================
                                                     WORK IMPACT 
====================================================================================================================== */

.services-app-pro {
    padding: 240px 8%;
    background: #0a1f2b;
    position: relative;
    overflow: hidden;
}

.services-app-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(157, 215, 244, .18), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(157, 215, 244, .10), transparent 60%);
    pointer-events: none;
}

.services-app-pro::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);

    background-size: 3px 3px;
    opacity: .25;
    pointer-events: none;
}

.app-pro-header {
    text-align: center;
    margin-bottom: 120px;
}

.app-pro-label {
    display: block;
    font-size: 17px;
    letter-spacing: 6px;
    opacity: .6;
    margin-bottom: 20px;
}

.app-pro-header h2 {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 800px;
    margin: auto;
}

.app-pro-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
    max-width: 1500px;
    margin: auto;
}

.app-pro-card {
    position: relative;
    height: 520px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 60px 120px rgba(0, 0, 0, .7), inset 0 -120px 120px rgba(0, 0, 0, .6);
    transition: .5s cubic-bezier(.19, 1, .22, 1);
}

/* FILA 1 (3 arriba centradas) */
.app-pro-card:nth-child(1) {
    grid-column: 1 / 3;
}

.app-pro-card:nth-child(2) {
    grid-column: 3 / 5;
}

.app-pro-card:nth-child(3) {
    grid-column: 5 / 7;
}

/* FILA 2 (2 abajo centradas tipo pirámide) */
.app-pro-card:nth-child(4) {
    grid-column: 2 / 4;
}

.app-pro-card:nth-child(5) {
    grid-column: 4 / 6;
}


.app-pro-slider {
    position: absolute;
    inset: 0;
}

.app-pro-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.app-pro-slider img.active {
    opacity: 1;
}

.app-pro-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .95) 100%);
    pointer-events: none;
}

.app-pro-dots {
    position: absolute;
    bottom: 190px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    pointer-events: auto;
}

.app-pro-dots span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, .4);
    border-radius: 50%;
    transition: .3s;
    cursor: pointer;
}

.app-pro-dots span.active {
    background: white;
    width: 18px;
    border-radius: 10px;
}

.app-pro-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    z-index: 5;
}

.app-pro-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.app-pro-top h3 {
    font-size: 25px;
}

.price {
    background: rgba(0, 0, 0, .6);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 15px;
}

.app-pro-content p {
    font-size: 16px;
    opacity: .85;
    margin-bottom: 12px;
}

.badges {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.badges span {
    background: rgba(255, 255, 255, .15);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.app-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 40px;
    background: white;
    color: black;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.app-btn:hover {
    background: #7AB2B2;
    color: white;
}

.app-pro-card:hover {
    transform: translateY(-12px) scale(1.03);
}


@media(max-width:1100px) {

    .services-app-pro {
        padding: 180px 6%;
    }

    .app-pro-header {
        margin-bottom: 80px;
    }

    .app-pro-header h2 {
        font-size: 42px;
        max-width: 600px;
    }

    .app-pro-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        justify-items: center;
    }

    .app-pro-card {
        grid-column: auto !important;
        justify-self: center;
        transform: none;
    }

    .app-pro-card:nth-child(4) {
        grid-column: 1 / 2;
        justify-self: end;
    }

    .app-pro-card:nth-child(5) {
        grid-column: 2 / 3;
        justify-self: start;
    }

    .app-pro-card:nth-child(4),
    .app-pro-card:nth-child(5) {
        transform: translateX(50%);
    }

    .app-pro-card {
        height: 480px;
        max-width: 320px;
        width: 100%;
    }

    .app-pro-dots {
        bottom: 195px;
    }

}

@media(max-width: 768px) {

    .app-pro-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        justify-items: center;
    }

    .app-pro-card {
        grid-column: auto !important;
        justify-self: center !important;
        transform: none !important;
        width: 100%;
        max-width: 320px;
    }

}

@media(max-width:430px) {

    .services-app-pro {
        padding: 140px 5%;
    }

    .app-pro-header {
        margin-bottom: 60px;
    }

    .app-pro-header h2 {
        font-size: 30px;
        max-width: 100%;
    }

    .app-pro-label {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .app-pro-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        justify-items: center;
    }

    .app-pro-card:nth-child(4),
    .app-pro-card:nth-child(5) {
        grid-column: auto;
        justify-self: center;
        transform: none;
    }

    .app-pro-card {
        width: 100%;
        max-width: 340px;
        height: 440px;
        border-radius: 26px;
    }

    .app-pro-dots {
        bottom: 160px;
    }

    .app-pro-content {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .app-pro-top h3 {
        font-size: 16px;
    }

    .app-pro-content p {
        font-size: 13px;
    }

    .badges {
        gap: 6px;
    }

    .badges span {
        font-size: 10px;
        padding: 4px 8px;
    }

    .app-btn {
        padding: 12px;
        font-size: 13px;
        border-radius: 30px;
    }
}

/* ===================================================================================================================
                                                     VOLUNTEER 
====================================================================================================================== */

.volunteer-cinematic {
    position: relative;
    min-height: 100vh;
    padding: clamp(120px, 12vw, 160px) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.volunteer-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.volunteer-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transform: translateY(-10%);
    filter: brightness(0.55) contrast(1.1);
    transition: transform 1.4s ease;
}

.volunteer-cinematic:hover .volunteer-bg img {
    transform: translateY(-12%) scale(1.05);
}

.volunteer-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(11, 30, 61, 0.95) 100%);
}

.volunteer-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    margin-left: 8%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.volunteer-cinematic.active .volunteer-content {
    opacity: 1;
    transform: translateY(0);
}

.volunteer-label {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
    margin-bottom: 25px;
}

.volunteer-content h2 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

.volunteer-content p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 600px;
    text-align: justify;
    opacity: 0.9;
    margin-bottom: 50px;
}

.volunteer-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.volunteer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    backdrop-filter: blur(4px);
}

.volunteer-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #7AB2B2;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
    z-index: 0;
}

.volunteer-btn span {
    position: relative;
    z-index: 2;
}

.volunteer-btn:hover::before {
    transform: scaleX(1);
}

.volunteer-btn:hover {
    color: #0f2854;
    border-color: #7AB2B2;
    transform: translateY(-3px);
}

.volunteer-meta {
    font-size: 16px;
    opacity: 0.6;
    letter-spacing: 1px;
}

@media (max-width:1025px) {

    .volunteer-content {
        margin: auto;
        text-align: left;
        width: 90%;
        max-width: 700px;
    }

    .volunteer-content h2 {
        font-size: 55px;
    }

    .volunteer-content p {
        font-size: 19px;
        max-width: 610px;
    }
}

@media (max-width:768px) {

    .volunteer-content h2 {
        font-size: 48px;
    }

    .volunteer-content p {
        font-size: 18px;
        max-width: 520px;
    }
}

@media (max-width:430px) {

    .volunteer-cinematic {
        padding: 100px 0;
        min-height: auto;
    }

    .volunteer-content {
        width: 85%;
        margin: auto;
    }

    .volunteer-label {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .volunteer-content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .volunteer-content p {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .volunteer-actions {
        gap: 18px;
    }

    .volunteer-btn {
        width: 80%;
        text-align: center;
        padding: 16px 24px;
    }

    .volunteer-meta {
        font-size: 15px;
    }

    .volunteer-bg img {
        height: 110%;
        transform: translateY(-5%);
    }

}


@media (max-width: 393px) {

    .volunteer-content h2 {
        font-size: 29px;
    }

    .volunteer-content p {
        font-size: 15px;
    }
}

/* ===================================================================================================================
                                                     DONATION 
====================================================================================================================== */

.donation-section{
    position: relative;
    padding: 140px 0;
    background:linear-gradient(180deg,#f8fafc,#eef2f7);
    overflow: hidden;
}


/* =========================================================
WRAPPER
========================================================= */

.donation-wrapper{
    width: 88%;
    max-width: 1380px;

    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 110px;
    align-items: center;
}


/* =========================================================
IMAGE
========================================================= */

.donation-image{
    position: relative;
}

.donation-image::before{
    content: '';

    position: absolute;

    inset: -30px;

    border-radius: 40px;

    background:
    radial-gradient(circle,
    rgba(15,40,84,.12),
    transparent 70%);

    z-index: 0;
}

.donation-image img{
    position: relative;
    z-index: 2;

    width: 100%;

    border-radius: 34px;

    transform: rotate(-2deg);

    box-shadow:
    0 40px 80px rgba(15,40,84,.18);

    transition: 1s ease;

    object-fit: cover;
}

.donation-image:hover img{
    transform:
    rotate(0deg)
    scale(1.02);
}


/* =========================================================
CONTENT
========================================================= */

.donation-content{
    position: relative;
}

.donation-content h2{
    font-size: 58px;
    line-height: 1.02;

    font-weight: 700;

    color: #07152d;

    margin-bottom: 20px;

    letter-spacing: -2px;
}

.donation-sub{
    font-size: 19px;
    line-height: 1.9;

    color: #475569;

    margin-bottom: 42px;

    max-width: 620px;
}


/* =========================================================
AMOUNTS
========================================================= */

.donation-amounts{
    display: flex;

    gap: 16px;

    flex-wrap: wrap;

    margin-bottom: 28px;
}

.amount-btn{
    border: none;

    padding: 16px 28px;

    border-radius: 999px;

    background: rgba(255,255,255,.7);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(15,40,84,.08);

    color: #07152d;

    font-weight: 600;

    cursor: pointer;

    transition: .35s ease;

    box-shadow:
    0 8px 20px rgba(15,40,84,.06);
}

.amount-btn:hover{
    transform: translateY(-4px);

    background: #07152d;

    color: #fff;
}

.amount-btn.active{
    background:
    linear-gradient(
    135deg,
    #07152d,
    #0f2854);

    color: #fff;

    box-shadow:
    0 20px 40px rgba(15,40,84,.22);
}


/* =========================================================
CUSTOM AMOUNT
========================================================= */

.home-custom-amount{
    margin-bottom: 34px;
}

.home-custom-amount input{
    width: 100%;

    max-width: 340px;

    padding: 20px 24px;

    border-radius: 22px;

    border: 1px solid rgba(15,40,84,.08);

    background: rgba(255,255,255,.75);

    backdrop-filter: blur(12px);

    outline: none;

    color: #07152d;

    font-size: 16px;

    transition: .3s ease;
}

.home-custom-amount input:focus{

    border-color: #0f2854;

    box-shadow:
    0 0 0 4px rgba(15,40,84,.08);
}


/* =========================================================
BUTTON
========================================================= */

.donation-cta{
    border: none;

    padding: 20px 44px;

    border-radius: 999px;

    background:
    linear-gradient(
    135deg,
    #07152d,
    #0f2854);

    color: #fff;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: .45s ease;

    box-shadow:
    0 20px 50px rgba(15,40,84,.25);
}

.donation-cta:hover{
    transform:
    translateY(-5px)
    scale(1.01);

    box-shadow:
    0 28px 60px rgba(15,40,84,.32);
}


/* =========================================================
LEGAL
========================================================= */

.donation-legal{
    margin-top: 34px;

    font-size: 15px;
    line-height: 1.9;

    color: #64748b;

    max-width: 620px;
}


/* =========================================================
BANK
========================================================= */

.donation-bank{
    margin-top: 60px;

    display: flex;
    align-items: center;
}

.donation-bank img{
    height: 78px;

    object-fit: contain;

    opacity: .95;

    transition: .3s ease;
}

.donation-bank img:hover{
    transform: scale(1.03);
}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .donation-wrapper{
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .donation-image{
        max-width: 720px;

        margin: auto;
    }

    .donation-image img{
        transform: none;
    }

    .donation-content{
        max-width: 760px;

        margin: auto;
    }

    .donation-content h2{
        font-size: 44px;
    }

}


@media(max-width:768px){

    .donation-section{
        padding: 110px 0;
    }

    .donation-wrapper{
        width: 90%;
    }

    .donation-content h2{
        font-size: 38px;

        line-height: 1.08;
    }

    .donation-sub{
        font-size: 16px;
    }

    .home-custom-amount input{
        max-width: 100%;
    }

}


@media(max-width:430px){

    .donation-section{
        padding: 90px 0;
    }

    .donation-wrapper{
        width: 92%;

        gap: 50px;
    }

    .donation-content h2{
        font-size: 32px;
    }

    .donation-sub{
        font-size: 15px;

        margin-bottom: 28px;
    }

    .donation-amounts{
        gap: 12px;
    }

    .amount-btn{
        padding: 14px 20px;

        font-size: 14px;
    }

    .home-custom-amount input{
        padding: 18px 20px;
    }

    .donation-cta{
        width: 100%;

        padding: 18px;
    }

    .donation-bank{
        justify-content: center;
    }

    .donation-bank img{
        height: 64px;
    }

}

/* ===================================================================================================================
                                                     Allies 
====================================================================================================================== */

.allies-ui {
    padding: 180px 8%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(122, 178, 178, .15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(122, 178, 178, .08), transparent 50%),
        #F5F1E8; 
}

.allies-header {
    text-align: center;
    margin-bottom: 80px;
    color: #071421; 
}

.allies-header h2 {
    font-size: 55px;
    margin: 20px 0;
}

.allies-header p {
    opacity: .8;
}

.allies-card {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 70px 60px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .4), inset 0 0 0 1px rgba(0, 0, 0, .05);
    position: relative;
}

.allies-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .4), 0 0 0 6px rgba(255, 255, 255, .1);
    pointer-events: none;
}

.allies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 80px;
    align-items: center;
    justify-items: center;
}

.allies-grid img {
    width: 200px; 
    height: 200px;    
    object-fit: contain;
    filter: grayscale(100%) brightness(.9);
    opacity: .85;
    transition: .4s ease;
}

.allies-grid img:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-3px);
}

.allies-cta-container {
    text-align: center;
    margin-top: 70px;
}

.allies-cta {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #7AB2B2, #3d6f8f);
    color: white;
    text-decoration: none;
    transition: .3s;
}

.allies-cta:hover {
    transform: translateY(-3px);
}

/*RESPONSIVE*/

@media(max-width:1100px) {

    .allies-card {
        padding: 50px 40px;
    }

    .allies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }

}

@media(max-width:430px) {

    .allies-ui {
        padding: 120px 6%;
    }

    .allies-header h2 {
        font-size: 30px;
    }

    .allies-card {
        padding: 40px 25px;
    }

    .allies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

/* ===================================================================================================================
                                                     ODS
====================================================================================================================== */

.ods-section {
    position: relative;
    padding: 140px 8%;
    background: radial-gradient(circle at top left, #0f2854 0%, #07152d 70%);
    color: white;
    overflow: hidden;
}

/* LINEA ANIMADA */
.ods-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7AB2B2, transparent);
    animation: scanline 6s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

/* HEADER */
.ods-header {
    max-width: 1000px;
    margin-bottom: 80px;
}

.ods-eyebrow {
    font-size: 17px;
    letter-spacing: 4px;
    opacity: 0.6;
    display: block;
    margin-bottom: 20px;
}

.ods-header h2 {
    font-size: 55px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* GRID */
.ods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* CARD */
.ods-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    perspective: 1200px;
}

/* FLIP */
.ods-flip {
    width: 100%;
    height: 100%;
    transition: transform .8s cubic-bezier(.19, 1, .22, 1);
    transform-style: preserve-3d;
}

/* DESKTOP HOVER */
.ods-card:hover .ods-flip {
    transform: rotateY(180deg);
}

/* MOBILE CLICK */
.ods-card.active .ods-flip {
    transform: rotateY(180deg);
}

/* CARAS */
.ods-face {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    backface-visibility: hidden;
    overflow: hidden;
}

/* FRONT */
.ods-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter 1s ease;
}

/* BACK */
.ods-back {
    background: rgba(7, 21, 45, 0.96);
    padding: 25px;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TEXTO */
.ods-back .ods-number {
    font-size: 12px;
    letter-spacing: 3px;
    opacity: .6;
    margin-bottom: 10px;
}

.ods-back h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.ods-back p {
    font-size: 15px;
    line-height: 1.6;
    opacity: .9;
}

/* HOVER EFFECT */
.ods-card:hover .ods-front img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

/* SOMBRA */
.ods-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity .6s ease;
}

.ods-card:hover::after {
    opacity: 1;
}

/* ================= HINT (CLAVE) ================= */

/* OCULTO EN DESKTOP */
.ods-hint {
    display: none;
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 10px;
    opacity: .85;
    backdrop-filter: blur(4px);
}

/* SOLO MOBILE */
@media (max-width:768px) {
    .ods-hint {
        display: block;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width:768px) {

    .ods-section {
        padding: 110px 6%;
    }

    .ods-header h2 {
        font-size: 36px;
    }

    .ods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ods-card {
        height: 330px;
        width: 300px;
    }

    /* DESACTIVAR HOVER */
    .ods-card:hover .ods-flip {
        transform: none;
    }

}

@media (max-width:430px) {

    .ods-section {
        padding: 90px 6%;
    }

    .ods-header {
        margin-bottom: 50px;
    }

    .ods-header h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .ods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ods-card {
        height: 360px;
        width: 360px;
    }

    .ods-back h3 {
        font-size: 27px;
        /* antes 18 */
    }

    .ods-back p {
        font-size: 22px;
        /* antes 14 */
        line-height: 1.7;
    }
}

@media (max-width:393px) {

    .ods-header h2 {
        font-size: 26px;
    }

    .ods-header p {
        font-size: 14px;
    }

    .ods-back h3 {
        font-size: 25px;
    }

    .ods-back p {
        font-size: 20px;
    }

    .ods-number {
        font-size: 15px;
    }
}

/* ===================================================================================================================
                                                     FOOTER
====================================================================================================================== */


.footer-pro {
    background: #05080f;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
    position: relative;
}

.footer-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    margin-bottom: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    transition: all .3s ease;
}

.footer-column a:hover {
    color: #7AB2B2;
    transform: translateX(4px);
}

.footer-social .social-icons {
    display: flex;
    gap: 18px;
    margin-top: 10px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: #7AB2B2;
    color: #0f2854;
    border-color: #7AB2B2;
    transform: translateY(-4px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    height: 100px;
    opacity: 0.8;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width:1100px) {

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-logo img {
        height: 80px;
    }

    .footer-bottom {
        gap: 30px;
    }

}

@media (max-width:768px) {

    .footer-pro {
        padding: 70px 0 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-column h4 {
        font-size: 11px;
    }

    .footer-column a {
        font-size: 13px;
    }

    .footer-logo img {
        height: 70px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width:430px) {

    .footer-pro {
        padding: 70px 0 30px;
    }

    .footer-container {
        width: 90%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        text-align: center;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column h4 {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .footer-column a {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-social {
        grid-column: span 2;
        text-align: center;
        margin-top: 10px;
    }

    .footer-social .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        margin-top: 20px;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-copy {
        font-size: 12px;
    }

}


@media (max-width:393px) {

    .footer-pro {
        padding: 60px 0 25px;
    }

    .footer-container {
        width: 92%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        text-align: center;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column h4 {
        font-size: 10px;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
    }

    .footer-column a {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-social {
        grid-column: span 2;
        margin-top: 8px;
    }

    .footer-social .social-icons {
        justify-content: center;
        gap: 12px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-top: 18px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-copy {
        font-size: 11px;
    }
}