@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*PORTADA*/
.portada {
    position: relative;
    height: 100vh;
    overflow: hidden;
    min-height: 480px;
    max-height: none;
    overflow: hidden;
    isolation: isolate;
}
.videoportada {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.videoportada-mobile { display: block; }
.videoportada-desktop { display: none; }
@media (min-width: 769px) {
    .videoportada-mobile {
        display: none;
    }
    .videoportada-desktop {
        display: block;
    }
}
.portadaoverlay {
    position: absolute;
    inset: 0;
    background: rgba(241, 90, 44, 0.2); 
    z-index: 1;
    pointer-events: none;
}
.portadatexto {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    padding: 0 1.25rem;
    box-sizing: border-box;
}
.portadatexto h1 {
    max-width: 1100px;
    margin: 0 auto;
}
.portadatexto h1 span {
    display: block;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(10px);
    animation: nosotros-aparecer 0.85s ease forwards;
}
.portadatexto h1 span:first-child,
.portadatexto h1 span:nth-child(2) {
    font-size: clamp(2rem, 10vw, 73px);
    font-weight: 600;
}
.portadatexto h1 span:last-child {
    font-size: clamp(2rem, 10vw, 73px);
    font-weight: 800;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.35;
}
.portadatexto h1 span:nth-child(1) {
    animation-delay: 0.15s;
}
.portadatexto h1 span:nth-child(2) {
    animation-delay: 0.4s;
}
.portadatexto h1 span:nth-child(3) {
    animation-delay: 0.7s;
}
@keyframes nosotros-aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*STATS*/
.iniciostats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(20px, 4vw, 80px);
    margin: 60px auto;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}
.stats h5 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin: 0;
    font-weight: 400;
}
.stats p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin: 5px 0 0 0;
    font-weight: 500;
}
.contador::before {
    content: "+ ";
}
.contadorsinmas::before {
    content: "";
}

/*SUMATE*/
.iniciosumate {
    display: flex;
    width: 100%;
    min-height: 500px;
}
.iniciosumatetextos {
    background: rgb(241, 90, 44);
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0 40px 40px;
    gap: 20px;
    color: white;
}
.iniciosumatetextouno h4 {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
}
.iniciosumateboton {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    width: fit-content;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
.iniciosumatevideos {
    background: rgb(241, 90, 44);
    display: flex;
    flex: 2;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}
.iniciosumatevideosgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    padding-left: 40px;
}
.iniciosumatevideoitem {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    z-index: 100;
    width: 100%;
}
.iniciosumatevideospersona {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    position: relative;
    z-index: 1;
}
.sound-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.15s ease,
                background 0.2s ease,
                opacity 0.2s ease;
}

.sound-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
    pointer-events: none;
} 

.sound-btn:hover {
    transform: scale(1.12);
    background: rgba(0, 0, 0, 0.75);
}

.sound-btn:active {
    transform: scale(0.95);
}

.sound-icon {
    width: 22px;
    height: 22px;
    fill: white;
}

.icon-wave {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sound-btn.active .icon-wave {
    opacity: 1;
}

.sound-btn.active .icon-muted {
    opacity: 0.35;
}

/*NOTICIAS/NOVEDADES*/
.inicionoticias {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    height: 350px;
    padding: 80px 0px;
    align-items: center;
}
.inicionoticiastitulo {
    flex: 1;
}
.inicionoticiastitulo h4 {
    font-size: 48px;
    font-weight: 300;
    scroll-padding: 20px;
    text-align: center;
}
.inicionoticiasinfo {
    display: flex;
    flex: 1.2;
    flex-direction: column;
    gap: 14px;
    padding-right: 40px;
}
.inicionoticiasmes h5 {
    color: #f15a2c;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}
.inicionoticiasevento h5 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}
.inicionoticiasdescripción p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    text-align: justify;
}
.inicionoticiasdescripción p span {
    display: block;
    line-height: 1.5;
}
.botonhacianoticias {
    width: fit-content;
    padding: 12px 32px;
    background-color: #f89825;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    color: black;
    transition: 0.2s;
    text-decoration: none;
}
.botonhacianoticias:hover {
    opacity: 0.85;
}

/*DONAR*/
.donar {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-color: #7eb7e4;
    width: 100%;
    height: 500px;
}
.donartexto {
    text-align: center;
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}
.donartexto p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    color: white;
}
.donarboton {
    width: fit-content;
    position: relative;
    z-index: 2;
}
.botondonar {
    padding: 12px 32px;
    background-color: #1d0480;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: white;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}
.botondonar:hover {
    opacity: 0.85;
}
.donarimagen {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
}
.donarimagen picture,
.donarimagen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.donarimagen picture { height: 100%; }
.donarimagen picture img { opacity: 0.5; }

/*NOSOTROS*/
.nosotros {
    background-color: #f89825;
    color: white;
    width: 100%;
    margin: 0 auto;
    padding: 100px clamp(24px, 8vw, 180px);
    display: flex;
    gap: 60px;
    align-items: center;
    height: max-content;
}
.nosotros-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.nosotros-left h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}
.btn {
     width: fit-content;
    padding: 14px 24px;
    background-color: #f15a2c;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.nosotros-right {
    display: flex;
    align-items: center; /* 👈 centra vertical */
}
.nosotros-right p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
    max-width: 480px;
    text-align: justify;
}

/*SPONSORS*/
.sponsors {
    height: 270px;
}
.sponsorstitulo{
    text-align: center;
    color:#f15a2c;
    padding-top: 60px;
    font-size: xx-large;
}
.infinite-scroller {
    overflow: hidden;
    width: 100%;
    padding: 20px 0 60px 0;
}
.scroller-wrapper {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll 45s linear infinite;
}
  
.infinite-scroller:hover .scroller-wrapper {
    animation-play-state: paused;
}
  
.scroller-item {
    flex: 0 0 auto;
    width: 140px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.scroller-item img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
}