@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Italic Thin.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia ExtraLight Italic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Light Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Regular Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Medium Italic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia SemiBold Italic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Bold Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia ExtraBold Italic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Sirenia';
  src: url('../fonts/Sirenia Black Italic .otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

/* ===== ESTILOS BASE ===== */
body {
  background: linear-gradient(to bottom, #00bbff 0%, #3091fe 100%);
  min-height: 100vh;
  padding: 0px;
  margin: 0px!important;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ===== VIDEO RESPONSIVE ===== */
.video-container {
  max-width: 750px;
  width: 100%;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #000;
  min-height: 400px;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 600px) {
  .video-container {
    max-width: 100%;
    margin: 20px auto;
  }
}

/* ===== CARRUSEL DE VIDEOS CON COVERFLOW ===== */
.videoSwiperContainer {
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videoSwiper {
  width: 100%;
  padding: 40px 0 60px 0;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

.videoSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.videoSwiper .swiper-slide {
  width: 500px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.6;
  transform: scale(0.85);
}

.videoSwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.videoSwiper .swiper-slide-next,
.videoSwiper .swiper-slide-prev {
  opacity: 0.8;
  transform: scale(0.9);
}

.video-slide-coverflow {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  background: #000;
  border: 6px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.videoSwiper .swiper-slide-active .video-slide-coverflow {
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.videoSwiper .swiper-slide-next .video-slide-coverflow, 
.videoSwiper .swiper-slide-prev .video-slide-coverflow {
  transform: scale(0.8);
  opacity: 0.85;
  transition: transform 0.3s, opacity 0.3s;
}

.video-slide-coverflow iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}

/* Navegación del carrusel de videos */
.videoSwiper .swiper-button-next, 
.videoSwiper .swiper-button-prev {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 30px !important;
  height: 30px !important;
  margin-top: -15px;
  color: #2c5aa0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  border: 2px solid rgba(44, 90, 160, 0.2);
}

.videoSwiper .swiper-button-next:after, 
.videoSwiper .swiper-button-prev:after {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c5aa0;
}

.videoSwiper .swiper-button-next:hover, 
.videoSwiper .swiper-button-prev:hover {
  transform: translateY(-50%) scale(1.1);
  background: rgba(44, 90, 160, 0.1);
}

.videoSwiper .swiper-button-next {
  right: 20px;
}

.videoSwiper .swiper-button-prev {
  left: 20px;
}

/* Paginación del carrusel de videos */
.videoSwiper .swiper-pagination {
  bottom: 10px !important;
  text-align: center;
}

.videoSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(44, 90, 160, 0.5);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.videoSwiper .swiper-pagination-bullet-active {
  background: #2c5aa0;
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(44, 90, 160, 0.3);
}

/* Responsive para carrusel de videos */
@media screen and (max-width: 768px) {
  .videoSwiperContainer {
    margin: 20px auto;
    padding: 0 15px;
    max-width: 100%;
  }
  
  .videoSwiper .swiper-slide {
    width: 350px !important;
  }
  
  .videoSwiper .swiper-button-next, 
  .videoSwiper .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px;
  }
  
  .videoSwiper .swiper-button-next:after, 
  .videoSwiper .swiper-button-prev:after {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .videoSwiperContainer {
    margin: 15px auto;
    padding: 0 10px;
    max-width: 100%;
  }
  
  .videoSwiper .swiper-slide {
    width: 280px !important;
  }
  
  .video-slide-coverflow {
    border-radius: 8px;
  }
  
  .video-slide-coverflow iframe {
    border-radius: 4px;
  }
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 20px;
    z-index: 2;
}

/* ===== NAVEGACIÓN ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logoNav {
    height: 80px;
}

.menunav {
    display: flex;
    justify-content: center;
}

.itemnav {
    font-family: 'Sirenia', sans-serif;
    margin-left: 20px;
    font-size: 26px;
    font-weight: 800;
    color: white;
    background-color: transparent;
    border: 0px solid white;
    padding: 10px;
    border-radius: 30px;
    height: fit-content;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.itemnav:hover {
    background-color: white;
    color: rgb(20, 31, 129);
    cursor: pointer;
}

.green {
    background-color: #45b63c;
    color: white;
}



.green:hover {
    background-color: rgb(49, 138, 49);
    color: white;
}



.blue{
  background-color: #3091fe;
  color: white;
}


.blue:hover{
  background-color: #251aba;
  color: white;
}


.itemnav.green {
    margin-right: auto;
    display: block;
}

/* ===== MENÚ MÓVIL ===== */
.mobileMenuBtn {
  display: none;
  position: fixed;
  top: 24px;
  right: 14px;
  z-index: 1001;
  width: 34px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: rgba(252, 252, 252, 0.637);
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
}

.mobileMenuBtn span {
  display: block;
  width: 18px;
  height: 4px;
  margin: 2px 0;
  background: #3091fe;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobileMenuBtn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobileMenuBtn.open span:nth-child(2) {
  opacity: 0;
}
.mobileMenuBtn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobileMenu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px 0 rgba(0,0,0,0.12);
  z-index: 1000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 80px 24px 24px 24px;
  gap: 18px;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
  transform: translateX(100%);
}

.mobileMenu.open {
  display: flex;
  transform: translateX(0);
}

.mobileMenu .itemnav {
  color: #3091fe !important;
  background: none !important;
  font-size: 1.3rem;
  margin: 0 0 12px 0;
  border-radius: 8px;
  padding: 12px 0;
  width: 100%;
  text-align: left;
  font-weight: 700;
  display: block !important;
}

.mobileMenu .itemnav.green {
  background: #45b63c !important;
  color: #fff !important;
  text-align: center;
}

/* ===== HERO ===== */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    padding-top: 5%;
    position: fixed;
}

.hero-content {
    width: 40%;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-image {   
    width: 60%;
}

.logocajita {
    width: 100%;
}

.hero-content-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    line-height: 1.6rem;
    color: white;
    text-align: center;
}

.cajita-image {
    width: 100%;
    margin-bottom: -40px;
    opacity: 0;
    transform: scale(0.3);
    animation: zoomInOut 0.8s ease-out 1s forwards;
}

/* ===== PÁJAROS Y NUBES ===== */
.cloudTop {
    background-image: url('../images/cloudTop.png');
    background-repeat: repeat-x;
    background-position: top center;
    height: 320px;
    margin-top: 30%;
    z-index: 20;
    position: relative;
    background-size: 90% auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 2s forwards;
}

.blueDevider {
    background-image: url('../images/blueBottom.svg');
    background-repeat: repeat-x;
    background-position: top;
    height: 100px;
    z-index: 20;
    position: relative;
    margin-top: -100px;
}

.containerBlue {
    background-color: #006FFF;
    min-height: 20vh;
    padding-top: 20px;
}

.birdsContainer {
    max-width: 1300px;
    margin: auto;
    padding: 50px 20px;
}

.bird1 {
    width: 280px;
    margin-left: 40px;
    margin-top: -50px;
    opacity: 0;
    transform: scale(0.3) rotate(15deg);
    animation: zoomInBounce 1.2s ease-out 2.8s forwards;
    will-change: transform;
}

.bird2 {
    width: 120px;
    margin-top: -90px;
    margin-left: 20%;
    opacity: 0;
    transform: translateX(300px) translateY(20px);
    animation: flyInSmooth 3s ease-in-out 1.5s forwards;
}

.bird3 {
    height: 270px;
    margin-top: -100px;
    animation: bird3Flotar 2s ease-in-out infinite alternate;
}

.bird3container {
    max-width: 1200px; 
    margin: auto; 
    display: flex; 
    justify-content: flex-end; 
    align-items: center;
    overflow: visible;
}

/* ===== SWIPER ===== */
.maxWidth {
    max-width: 1200px;
    margin: auto;
    width: 100%;
    position: relative;
}

.mySwiper {
    width: 100%;
    padding: 40px 0 60px 0;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    width: 420px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.6;
    transform: scale(0.85);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.8;
    transform: scale(0.9);
}

.swiper-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 12px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active img {
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.swiper-slide-next img, .swiper-slide-prev img {
    transform: scale(0.8);
    opacity: 0.85;
    transition: transform 0.3s, opacity 0.3s;
}

.senoracaja{
  margin-top: -30%; 
  transform: scale(1.2);
}

.swiper-button-next, 
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    padding: 10px;
    color: #006FFF;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 1.8rem;
    font-weight: bold;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-pagination {
    bottom: 10px !important;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ===== ABOUT ===== */
.about {
    background-color: #eff7f8;
    padding: 10px 20px;
    margin-top: -40px;
    min-height: 300px;
}

.acercaContent {
    max-width: 1000px;   
    padding: 0px 20px;
    margin: auto;
}

.aboutContainerContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.textBtncontainer {
    max-width: 800px; 
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.textColumnContent {
    width: 50%;
    padding: 30px;
}

.imageColumnContent {
    width: 50%;
    animation: flotarSuave 6s ease-in-out infinite alternate, girarSuave 8s ease-in-out infinite alternate;
}

/* ===== NUBES CON ESTADÍSTICAS ===== */
.cloudsContainer {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.cloudsColumnContainer {
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.column40 {  
    width: 30%;
    margin-top: 10%;
}

.cloudItem {
    background: url('../images/cloud.svg') center center/contain no-repeat;
    width: 320px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    animation: nubeFlotar 5s ease-in-out infinite alternate;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}

.cloudItemBottom {
    margin-top: -100px;
}

.cloudItem:nth-child(1) {
    animation-delay: 0s;
}
.cloudItem:nth-child(2) {
    animation-delay: 2.6s;
}
.cloudItem:nth-child(3) {
    animation-delay: 3.8s;
}
.cloudItem:hover {
    transform: scale(1.08);
    z-index: 2;
}

.cloudNumber {
    font-family: 'Sirenia', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #f8a82f;
    margin-bottom: 8px;
    text-align: center;
    line-height: 2rem;
}

.cloudDesc {
    font-family: 'Sirenia', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f8a82f;
    line-height: 1rem;
    text-align: center;
}

/* ===== QUÉ INCLUYE ===== */
.queIncluye {
    margin-top: 100px;
}

.marginB50 {
    margin-bottom: 50px;
}

.queIncluyeContainer {
    width: 100%;
    margin: 40px auto;
    display: flex;
    justify-content: center;
}

.queIncluyeList {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    width: 100%;
    max-width: 1300px;
}

.queIncluyeItem {
    width: 200px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 18px;
    padding: 18px 12px 12px 12px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.queIncluyeItem img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 16px;
    animation: giroSutilIncluye 7s ease-in-out infinite alternate;
    transition: transform 0.3s;
}

.queIncluyeItem:nth-child(1) img { animation-delay: 0s; }
.queIncluyeItem:nth-child(2) img { animation-delay: 1.2s; }
.queIncluyeItem:nth-child(3) img { animation-delay: 2.1s; }
.queIncluyeItem:nth-child(4) img { animation-delay: 2.7s; }
.queIncluyeItem:nth-child(5) img { animation-delay: 3.5s; }

.queIncluyeItem:hover img {
    transform: translateY(-16px) scale(1.13) rotate(0deg);
    z-index: 2;
}

.queIncluyeItem:hover {
    transform: translateY(-16px) scale(1.07) rotate(0deg);
    z-index: 2;
}

.queIncluyeText {
    font-family: 'Sirenia', sans-serif;
    font-size: 1.1rem;
    color: white;
    text-align: center;
    font-weight: 600;
}

/* ===== CÓMO DONAR ===== */
.comoDonar {
    margin-top: 100px;
    padding-top: 50px;
    max-width: 1200px;
    margin: auto;
    background-image: url('../images/nube.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quiereser{
  margin-top: 100px;
  padding-top: 50px;
  max-width: 1200px;
  margin: auto;
  min-height: 500px;
  background-image: url('../images/nube.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pdonar {
    font-size: 18px;
    max-width: 700px;
    text-align: center;
    margin-top: 0px;
}

.call {
    max-width: 1200px;
    margin: auto;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.enviarMoney {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 10px;
    color: #006FFF;
    font-family: Arial, Helvetica, sans-serif;
}

.columnBank {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    max-width: 900px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.bankColGroup {
    display: flex;
    min-width: 500px;
    justify-content: center;
    align-items: stretch;
}

.bankCol {
    flex: 1 1 0;
    min-width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bankColLogo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
}

.bankText {
    font-family: 'Sirenia', sans-serif;
    font-size: 1.7rem;
    line-height: 1.7rem;
    text-align: center;
    font-weight: 700;
    color: #45b63c;
    margin-bottom: 0;
}

.bankLogo {
    width: 120px;
    height: auto;
    margin-bottom: 12px;
    display: block;
}

/* ===== ALIADOS ===== */
.aliados {
    margin-top: 100px;
    padding: 0px 0;
    overflow: hidden;
    width: 100%;
}

.aliadosMarquesina {
    display: flex;
    align-items: center;
    width: 200%;
    animation: aliadosScroll 40s linear infinite;
    gap: 40px;
}

.marquee-set {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-shrink: 0;
    width: max-content;
}

.aliadoLogo {
    height: 240px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.aliadoLogo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ===== LOGOS ESPECÍFICOS CON TAMAÑOS PERSONALIZADOS ===== */
.aliadoLogo[src*="sula.svg"] {
    height: 110px;
    width: auto;
    margin-bottom: -10px;
}

.aliadoLogo[src*="ceteco.png"] {
    height: 140px;
    width: auto;
    margin-bottom: -25px;
}

.aliadoLogo[src*="CODIS.png"] {
  height: 140px;
  width: auto;
  margin-bottom: -25px;
}




.aliadoLogo[src*="americana.png"] {
  height: 50px!important;
  width: auto;
  margin-bottom: 15px;
}

.aliadoLogo[src*="logoresal 2.png"] {
  height: 60px;
  width: auto;
  margin-bottom: 10px;
}


/* ===== FOOTER ===== */
.footer {
    background-image: url('../images/backland.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100%;
    height: 200px;
}

/* ===== TIPOGRAFÍA ===== */
p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    line-height: 1.6rem;
}

h2 {
    font-family: 'Sirenia', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #3091fe;
    text-align: center;
    margin-bottom: 20px;
}

h4 {
    font-family: 'Sirenia', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 2.4rem;
    color: #3091fe;
    text-align: center;
}

h5 {
    font-family: 'Sirenia', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-top: -20px;
}

.buttonDonar {
    background-color: #3091fe;
    color: white;
    padding: 10px 10px;
    border-radius: 30px;
    border: 0px solid white;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Sirenia', sans-serif;
    min-width: 150px;
    margin-top: 30px;
    text-align: center;
}

/* ===== COLORES AUXILIARES ===== */
.bluelight {
    color: #3091fe;
}

.orange {
    color: #f8a82f;
}

.greenColor {
    color: #04af07;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomInOut {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes flyInSmooth {
  0% {
    opacity: 0;
    transform: translateX(300px) translateY(20px);
  }
  15% {
    opacity: 1;
    transform: translateX(200px) translateY(-10px);
  }
  30% {
    transform: translateX(100px) translateY(15px);
  }
  45% {
    transform: translateX(50px) translateY(-5px);
  }
  60% {
    transform: translateX(20px) translateY(8px);
  }
  75% {
    transform: translateX(5px) translateY(-2px);
  }
  90% {
    transform: translateX(0px) translateY(0px);
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0px) translateY(0px);
  }
}

@keyframes zoomInBounce {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(15deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(8deg);
  }
  70% {
    transform: scale(0.9) rotate(4deg);
  }
  85% {
    transform: scale(1.1) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes nubeFlotar {
  0% { transform: translateY(0); }
  100% { transform: translateY(-22px); }
}

@keyframes flotarSuave {
  0% { transform: translateY(0); }
  100% { transform: translateY(-24px); }
}

@keyframes girarSuave {
  0% { transform: rotate(-3deg); }
  100% { transform: rotate(3deg); }
}

@keyframes bird3Flotar {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes giroSutilIncluye {
  0% { transform: rotate(-2deg); }
  100% { transform: rotate(2deg); }
}

@keyframes aliadosScroll {
  0% { 
    transform: translateX(0); 
  }
  100% { 
    transform: translateX(-50%); 
  }
}

/* ===== MEDIA QUERIES ===== */

/* TABLETS Y PANTALLAS MEDIANAS - 900px */
@media screen and (max-width: 900px) {
  /* Navegación */
  .mobileMenuBtn {
    display: flex;
  }
  
  .menunav {
    display: none !important;
  }
  
  .logoNav {
    width: 250px;
  }
  
  /* Hero */
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px 0 10px;
    position: static;
  }
  
  .hero-content, .hero-image {
    width: 100%;
    text-align: center;
  }
  
  /* Nubes y fondo */
  .cloudTop {
    height: 120px;
    margin-top: -10%;
    background-size: 200% auto;
  }
  
  .birdsContainer {
    padding: 0px 5px;
    max-width: 100vw;
  }
  
  /* Pájaros */
  .bird1 {
    width: 120px;
    margin-left: 0;
  }
  
  .bird2 {
    width: 60px;
    margin-top: -40px;
    margin-left: 10%;
  }
  
  /* Container */
  .container {
    max-width: 100vw;
    padding: 10px;
  }
  
  /* About */
  .aboutContainerContent {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .textColumnContent, .imageColumnContent {
    width: 100%;
    padding: 10px 0;
    margin: 0;
  }
  
  .imageColumnContent {
    margin-bottom: 32px;
    margin-top: 0;
  }
  
  /* Tipografía responsive */
  h2 {
    font-size: 2rem;
    line-height: 2.2rem;
    margin-bottom: 16px;
  }
  
  h4 {
    font-size: 2.5rem;
    line-height: 1.7rem;
    margin-bottom: 12px;
  }
  
  .textBtncontainer {
    max-width: 100%;
    padding: 0 10px;
  }
  
  /* Nubes estadísticas */
  .cloudsContainer {
    flex-direction: column-reverse;
    gap: 18px;
  }
  
  .cloudsColumnContainer {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .cloudItem {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
  }
  
  .cloudItemBottom {
    margin-top: 10px;
  }
  
  .cloudNumber {
    font-size: 3rem !important;
  }
  
  .cloudDesc {
    font-size: 0.9rem;
  }
  
  /* Swiper */
  .swiper-slide {
    width: 250px !important;
  }
  
  .swiper-slide img {
    height: 200px;
  }
  
  .swiper-button-next, .swiper-button-prev {
    width: 48px;
    height: 48px;
  }
  
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
  }
  
  /* Qué incluye - scroll horizontal */
  .queIncluyeList {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 10px;
  }
  
  .queIncluyeItem {
    flex: 0 0 220px;
    min-width: 180px;
    max-width: 240px;
  }
  
  /* Bancos */
  .columnBank {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  
  .bankColLogo {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    padding: 0 0 18px 0;
  }
  
  .bankColLogo .bankLogo {
    margin-bottom: 0;
    margin-right: 12px;
  }
  
  .bankColLogo .bankText {
    margin-bottom: 0;
    font-size: 14px;
  }
  
  /* Aliados */
  .aliadosMarquesina {
    gap: 20px;
  }
  
  .marquee-set {
    gap: 20px;
  }
  
  .aliadoLogo {
    height: 60px;
    max-width: 140px;
  }
}

/* MÓVILES - 600px */
@media screen and (max-width: 600px) {
  /* Logo */
  .logoNav {
    width: 250px;
  }
  
  /* Footer */
  .footer {
    height: 49px;
  }
  
  /* Texto hero */
  .hero-content-text, p {
    font-size: 1rem;
    line-height: 1.3rem;
  }
  
  /* Nubes */
  .cloudTop {
    height: 80px;
    background-size: 300% auto;
    height: 300px;
    background-size: 90% auto;
    margin-top: -10%;
  }
  
  /* Logos */
  .logocajita {
    width: 80%;
  }
  
  .cajita-image {
    width: 90%;
    margin-bottom: -20px;
  }
  
  /* About */
  .about {
    background-color: #eff7f8;
    padding: 1px 20px;
    margin-top: -20px;
    min-height: 300px;
    padding: 1px 5px;
    margin-top: 14px !important;
    min-height: 200px;
  }
  
  .aboutContainerContent {
    gap: 12px;
  }
  
  /* Tipografía móvil */
  h2 {
    font-size: 2.7rem;
    line-height: 2rem;
    margin-bottom: 10px;
  }
  
  h4 {
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 8px;
  }
  
  h5 {
    margin-top: 10px;
  }
  
  .textColumnContent, .imageColumnContent {
    padding: 0;
  }
  
  .imageColumnContent {
    margin-bottom: 18px;
  }
  
  .textBtncontainer {
    padding: 0 2px;
  }
  
  /* Swiper móvil */
  .swiper-slide {
    width: 200px !important;
  }
  
  .swiper-slide img {
    height: 160px;
  }
  
  .swiper-button-next, .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem;
  }
  
  /* Qué incluye - scroll horizontal */
  .queIncluyeContainer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .queIncluyeList {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100vw;
    overflow-x: auto;
    gap: 18px;
    justify-content: flex-start;
  }
  
  .queIncluyeItem {
    flex: 0 0 200px;
    min-width: 180px;
    max-width: 220px;
  }
  
.quiereser{
  background-size: cover;
}


  /* Donaciones */
  .enviarMoney {
    font-size: 1.3rem;
  }
  
  .bankColGroup {
    display: flex;
    min-width: 90%;
  }
  
  .comoDonar {
    background-image: url(../images/nube.png);
    background-size: cover;
  }
  
  /* Aliados móvil */
  .aliados {
    margin-top: 100px;
    padding: 50px 0;
    overflow: hidden;
    width: 100%;
  }
  
  .aliadosMarquesina {
    gap: 20px;
    animation-duration: 35s;
    height: auto;
  }
  
  .marquee-set {
    gap: 20px;
    align-items: center;
    height: 150px;
  }
  

  .senoracaja{
  margin-top: -15%; 
  transform: scale(1)!important;
}


  .aliadoLogo {
    height: 150px;
    max-width: 200px;
    min-width: 120px;
  }
}








/* Contenedor principal con flechas */
.marquee-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Flechas de control */
.marquee-arrow {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #3091fe;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  flex-shrink: 0;
}

.marquee-arrow:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.marquee-arrow:active {
  transform: scale(0.95);
}

/* Actualizar la marquesina para que funcione con las flechas */
.aliadosMarquesina {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  /* Remover la animación CSS original */
  animation: none;
}

/* Estilos para los enlaces en la marquesina */
.aliado-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  margin: 0 15px;
}

.aliado-link:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.aliado-link:hover .aliadoLogo {
  filter: brightness(1.1);
}

/* Actualizar estilos de logos */
.aliadoLogo {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.aliadoLogo:hover {
  opacity: 1;
}

/* Actualizar marquee-set */
.marquee-set {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  flex-shrink: 0;
  width: max-content;
}

/* ===== RESPONSIVE PARA MARQUESINA CON FLECHAS ===== */

/* TABLETS Y PANTALLAS MEDIANAS - 900px */
@media screen and (max-width: 900px) {
  .marquee-container {
      gap: 15px;
      padding: 0 15px;
  }
  
  .marquee-arrow {
      width: 45px;
      height: 45px;
  }
  
  .aliadoLogo {
      height: 70px;
      max-width: 160px;
  }
  
  .aliado-link {
      margin: 0 12px;
  }
}

/* MÓVILES - 600px */
@media screen and (max-width: 600px) {
  .marquee-container {
      gap: 10px;
      padding: 0 10px;
  }
  
  .marquee-arrow {
      width: 40px;
      height: 40px;
  }
  
  .marquee-arrow svg {
      width: 18px;
      height: 18px;
  }
  
  .aliadoLogo {
      height: 60px;
      max-width: 140px;
      min-width: 100px;
  }
  
  .aliado-link {
      margin: 0 8px;
  }
  
  .marquee-set {
      gap: 20px;
  }
}