/**** GLOBALES ****/
*{
    margin: 0;
    padding: 0 ;

}

@font-face {
    font-family: 'Sofia Pro';
    src: url('./fonts/Sofia-Pro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('./fonts/Sofia Pro Regular Italic Az.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('./fonts/Sofia-Pro-Light-Az.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('./fonts/Sofia Pro Bold Az.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('./fonts/Sofia Pro Medium Az.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('./fonts/Sofia Pro Black Az.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('./fonts/Sofia Pro ExtraLight Az.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('./fonts/Sofia Pro UltraLight Az.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('./fonts/Sofia Pro Semi Bold Az.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

body {
    font-family: 'Sofia Pro', sans-serif;
}
.btn-descargar{
    font-family: 'Outfit';
    font-weight: 500
}

.text-store,
.text-main{
    color:  #030BA6;
    font-family: 'Sofia Pro';
    font-weight: 400;
}

.text-main {
    font-size: 3.2rem;

    font-family: 'Sofia Pro';
    font-weight: 300 !important;
    line-height: 52px;
    transform: translateY(20px); 
    animation: fadeInUp 3s ease forwards; 
    opacity: 0;
}
.text-main span{
    font-weight: 600;
    color: #030BA6;}

.text-bienvenidos{
    font-size: 2.9rem;
}

@media screen and (min-width: 767px) and (max-width: 992px){
    .text-bienvenidos{
        padding-left: 4rem;
    }
    
}
body{
    background: linear-gradient(
    90deg, 
    rgba(0, 221, 252, 0.3),  
    rgba(56, 100, 243, 0.3),
    rgba(29, 89, 244, 0.3) 

    
  );

overflow-x: hidden;
}


/* MAIN SECTION */
.logo img{
    width: 80%;
}


@media screen and (max-width: 768px){
    .logo img{
        width: 70%;
        margin-top: 1rem;
    }
    
}
.main-section{
 background: linear-gradient(
    90deg, 
    rgba(0, 221, 252, 0.3),  
    rgba(56, 100, 243, 0.3),
    rgba(29, 89, 244, 0.3) 

    
  );

}

.background-image {
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%; 
    height: 150%;
    background: url('./assets/recuadro-azul.png') no-repeat center center;


    background-size: contain; 
    z-index: -1;
}

.celular {
    width: 100%;
    z-index: 1;
    position: relative;
}

.billetera {
    position: absolute;
    width: 100px; 
    height: auto;
    z-index: 2; 
}

/* Posiciones específicas */
.billetera-1 {
    top: 80%;
    left: -10%;
    transform: rotate(-45deg)
}

.billetera-2 {
    top: 60%;
    left: 100%;
    transform: translate(-50%, -50%);
}



.btn-descargar{
    background-color: #3B00F4;
    color: #FFF;
    text-transform: uppercase;
    border: 1px solid #3B00F4;
    padding: 10px;
    padding-bottom: 0;
    font-size: 1.8rem;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    font-family: 'Sofia Pro';
    font-weight: 400;
    animation: floating 2s ease-in-out infinite;
}

.btn-descargar:hover{
    background-color: #FFF;
    color: #3B00F4;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px); 
    }
    100% {
        transform: translateY(0);
    }
}


/* SECCIÓN BIENVENIDOS */
.section-bienvenidos {
    background: url('./media/fondo-seccion-bienvenidos.png') no-repeat center center; 
    background-size: cover; 
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 150px 0;
    padding-top: 0;
    color: white;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-bienvenidos .container-fluid {
    max-width: 100%;
    padding-left: 50px;
    padding-right: 100px;
}


.text-bienvenidos {
    line-height: 1.1;
    font-size: 3.5rem;
    margin-top: 10px;
    padding-left: 100px;
  
}

.text-bienvenidos .highlight {
    color: #FBCB43; 
}

.description-box {
    background: linear-gradient(
        135deg, 
        rgba(40, 33, 211, 0.3),
        rgba(40, 33, 211, 0)   
    );
   padding: 30px 50px;
    border-radius: 40px;
    color: white;
    width: 550px;
    font-size: 1.2rem;
    line-height: 1.2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Transición suave con efecto bounce */
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.description-box p {
    margin-bottom: 1rem;
}
.description-box:hover {
    transform: translateY(-15px); /* Movimiento hacia arriba */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 576px) {
 
        .text-bienvenidos {
            font-size: 2rem; 
            padding-left: 0;
            justify-content: center !important;
            align-items: center !important;
        }
    
        .description-box {
            padding: 20px; 
            font-size: 0.9rem;
            line-height: 1.4; 
            width: 400px;
        }
        .section-bienvenidos .container-fluid {
            max-width: 80%;
            padding-left: 0px;
            padding-right: 0px;
        }
        

    }


@media screen and (max-width: 768px){
   .logo img{
    width: 80%;

    margin-top: 40px;
   }
    .section-bienvenidos{
        height: auto;
        padding: 2rem 0rem;

    }

    .billetera{
        display: none;
    }
    .text-main{
        font-size: 2rem ;
        line-height: 1;
    }

  .btn-descargar{
    font-size: 20px;   
  }

  

}
 



span{
    color: #E5C400;
}


.description .circle{
    border: 1px solid #E5C400;
    border-radius: 26px;
    padding: 1rem 2rem;
    max-width: 600px;
}

.circle p{
    font-size: 1.5rem;
    font-family: 'Outfit';
    font-weight: 300;
}

/* SECTION MONEDAS */
.section-monedas {
    margin-top: -20rem;
    position: relative;
    z-index: 1;
  
}

.section-monedas img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .section-monedas {
        margin-top: -5rem;
   
    }
.section-monedas img{
    width: 100%;
    margin-bottom: -60px;
}
}








/* SECTION STORE */
.chica-img{
    width:70%;
     margin-right: 100px;
    z-index: 2;
   
    
 }
 
 .button-store{
     width: 30%;
 }
 
 .text-store{
     font-size: 2.5rem;
     line-height: 44px;
 }
 

 .store-wrapper {
     background: linear-gradient(90deg, #91A5FF 0%, #a5bffc 100%);
     position: relative;
     width: 100%;
     overflow: hidden;
     z-index: 0;
     margin-top: -13rem;
     padding: 80px 0;
     padding-bottom: 0;
     
 }
 
 .pyme-background {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%; 
    height: 100%;
    background: url('./assets/letras-pyme.png') no-repeat left center;
    background-size: contain;
    
    pointer-events: none; 
}
 
 .store {
     position: relative;
     z-index: 2;
 }
 
 @media screen and (max-width: 768px){
     .text-store{
         font-size: 2rem;
     }
     
     .pyme-background {
         display: none;
     }
     .chica-img{
        
        width: 100%;
        margin-right: 0;
     }
     .store-wrapper{
        margin-top: 0;
     }
     .store {
        margin-top: 0 !important;
     }
     .store-wrapper {
        padding-top: 0;
     }
     .store p {
        font-size: 30px;
        line-height: 1;
     }
 } 


@media (max-width: 768px) {
    #BtnDescargas a {
        margin-bottom: 16px;
    }
    .button-store{
        width: 50%;
    }
}

@media (max-width: 1400px) {

    .store p {
        font-size: 32px;
    }
    .store {
        margin-top: 40px
    }
}
/* FOOTER */
footer{
    background: #0D124D;
}

footer .text-descarga{
    font-size: 2rem;
    font-family: 'Outfit';
    font-weight:600;
}
