.intro {
  background: url(/public/gggrain.svg);
  background-repeat: no-repeat ;
  background-size: cover;
  width: 100%;
  
    /* background: linear-gradient( 
        to bottom,
        #DCE1E5,
        #E6E6ED
    );
      */
}

.intro__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    padding-top: 10.438rem;
    position: relative;
    z-index: 500;
}

/* TEXTO CON EMOJI*/
.texto-con-emoji{
    filter: drop-shadow(1px 1px .5px black);
    -webkit-filter: drop-shadow(1px 1px .5px black);
} 

/* MONEDAS */

.intro__container::after {
    content: "";
    position: absolute;
    top: 17%; 
    right: 0%; 
    margin: 0 var(--margenDesktop);
    background-image: url(/public/image/monedasright1.png);
    background-size: contain; 
    background-repeat: no-repeat;
    width: 215px;
    height: 376px;
    z-index: 100;
    /* border: 1px solid red; */
   }
   
.intro__container::before {
    content: "";
    position: absolute;
    top: 43%; 
    left: 0%; 
    margin: 0 var(--margenDesktop);
    background-image: url(/public/image/monedasleft1.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 215px;
    height: 376px;
    z-index: 100;
    /* border: 1px solid red; */
}

.intro__title, 
.features__title, 
.steps__title,
.loan-simulator__title,
.faqs__title,
.control-future__title  {
    font-size: 3.25rem;
    font-weight: 700;
    text-align: center;
}

.intro__title > span{
    color: var(--verdePrincipal500);
}

.intro__paragraph, .features__paragraph{
    text-align: center;
    max-width: 790px;
    width: 75%;
    hyphens: none;
    line-height: 160%;
    font-size: 1.25rem;
}

.intro__btn {
    width: 193px;
    height: 50px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    gap: 8px;
    border-radius: 50px;
    background: var(--verdePrincipal500);
    cursor: pointer;
    z-index: 120;
    transition: background .3s ease-in;
}

.intro__btn:hover {
    background-color: var(--verdeClaroHover);
    
}

@keyframes vibrar {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    50% {
        transform: translateX(2px);
    }
    75% {
        transform: translateX(-2px);
    }
    100% {
        transform: translateX(0);
    }
}
.intro__btn > svg {
    width: 16px;
    
}
.intro__btn:hover > svg {
    animation: vibrar 1s linear infinite;
    
}
.base {
    position: relative;
    bottom: -6px;
    margin-top: 11.813rem;
    /* margin-top: 20vh; */
    z-index: 10;
}
.base > svg {
    z-index: 120;
}

/* BILLETES */
.base::before {
    content: "";
    background-image: url(/public/image/2billetes1.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100%;
    margin-left: auto;
    margin-right: auto;
    left: 53%;
    transform: translateX(-50%);
    width: clamp(35.4rem, 17.309rem + 29.795vw, 53.063rem);
    height: clamp(23.563rem, 12.166rem + 17.466vw, 33.125rem);
    /* border: 1px solid blue; */
    z-index: 100;
}

/* CUADRICULA */
.base::after{
    content: "";
    background: url(/public/image/cuadricula.svg) no-repeat center center;
    background-size: cover;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 70vh;
    z-index: -2000;
} 


.secondary__title{
    position: relative;  
    color: var(--verdePrincipal500);
  }
  
  .secondary__title::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 42px;
    border-right: 1px solid var(--verdePrincipal500); 
    animation: writte 1s infinite;
  }
  
  @keyframes writte{
    0%, 50%{
      opacity: 0;
    }
    75%, 100%{
      opacity: 1;
    }
  }


@media (max-width: 1440px) and (min-width: 744px){
    .intro__container {
        padding-top: clamp(10.063rem, 5.386rem + 10.057vw, 14.438rem);
        padding-top: 8vh;
        padding-left: var(--margenDesktop);
        padding-right: var(--margenDesktop);
    }
    .intro__container::after, .intro__container::before {
        width: 10vw;
        top: 26vh;
    }
    .intro__container::before {
        width: 10vw;
        top: 30vh;
    }
    

}

@media (max-width: 744px) and (min-width: 300px) {
    .intro__container {
        padding: clamp(1.313rem, -4.6rem + 31.532vw, 10.063rem) clamp(1.313rem, 0.003rem + 6.982vw, 3.25rem) 0;
        padding-top: 3vh;
        gap: clamp(1.5rem, 0.245rem + 3.774vw, 2rem);
    }
    .intro__title, 
    .features__title, 
    .steps__title,
    .loan-simulator__title,
    .faqs__title,
    .control-future__title  {
        font-size: clamp(1.313rem, 0.003rem + 6.982vw, 3.25rem);
        line-height: 123%;
    }
    .intro__btn {
        margin-top: 1.2rem;
    }
    .intro__paragraph, 
    .features__paragraph{
       font-size: clamp(1rem, 0.811rem + 0.943vw, 1.25rem);  /* IMPORTANTE COMO SE COMPORTA EL PARRAFO */
        width: 90%;
        line-height: 150%;
    }
    .base::before {
        width: clamp(17.813rem, 3.52rem + 71.462vw, 36.75rem);
        height: clamp(10.938rem, 1.409rem + 47.642vw, 23.563rem);
    }
    .intro__container::after, .intro__container::before {
        display: none;
    }
}