﻿/* INICIO */
.inicio{
    background-color: var(--secondary-color);
    border-radius: 0 0 40rem;
}

.inicio_container{
    align-items: center;
    color:var(--text-color);
    gap: 1rem;
}

.inicio_content{
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.inicio_img img{
    background-color: var(--primary-color);
    border-radius: 4rem 1rem;
    width: 320px;
}

/*=======Informacion=======*/
.information_container{
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items:center;
}

.information_title{
    color:var(--text-color)
} 

.information_content{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.information_text{
    line-height: 1.7;
}

.information_list ul{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.information_list_item {
    display: flex;
    align-items: center;
    gap:.5rem;
}

.information_list_item i{
    color: var(--text-color);
    font-weight: var(--bold-weight);
}

.information_img-content{
    overflow: hidden;
    border-radius: 4rem 0rem;
    width: 90%;
    height: 80%;
    margin: 0 auto;
}

.information_img-content img{
    width: 100%;
}

.information_img-content:hover img{
  transform: scale(1.1);
}

.btn-primary{
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    border-radius: 30px;
    padding: 1rem  2rem;
    position: relative;
    margin: 10px 0;  
    display:flex;    
    align-items: center;
    gap: .5rem;
    max-width: max-content;
    z-index: 1;
}
.animacion {
    z-index: 1;
}

span.dos,
span.tres,
span.uno {
    border: 0;
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    animation: vuela 7s linear infinite normal both;
}

span.uno {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    bottom: -100px;
}

span.dos {
    width: 70px;
    height: 70px;
    background-color: #cacaca;
    bottom: -70px;
}

span.tres {
    width: 50px;
    height: 50px;
    background-color: #878787;
    bottom: -50px;
}

span.cuatro {
    width: 20px;
    height: 20px;
    background-color: #7d7d7d;
    bottom: -20px;
}

@keyframes vuela {
    from {
        transform: rotate(0deg);
        bottom: 0;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    to {
        transform: rotate(360deg);
        bottom: calc(100% + 100px);
    }
}

.animacion span:nth-child(1) {
    left: 20%;
    animation-delay: 4s;
}

.animacion span:nth-child(2) {
    left: 50%;
    animation-delay: .5s;
}

.animacion span:nth-child(3) {
    left: 35%;
    animation-delay: 5s;
}

.animacion span:nth-child(4) {
    left: 75%;
    animation-delay: 1s;
}

.animacion span:nth-child(6) {
    left: 85%;
    animation-delay: 3s;
}

.animacion span:nth-child(7) {
    left: 90%;
    animation-delay: 5s;
}

.animacion span:nth-child(8) {
    left: 65%;
}

.animacion span:nth-child(9) {
    left: 60%;
}

.animacion span:nth-child(10) {
    left: 1%;
    animation-delay: 6s;
}

.animacion span:nth-child(11) {
    left: 10%;
}

.animacion span:nth-child(12) {
    left: 10%;
    animation-delay: 3s;
}


.servicios_cards{
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.servicios_card_item{
    background: var(--primary-color);
    background: linear-gradient(0deg, #1d7d96 11%, var(--primary-color) 92%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1rem;
    padding: 2rem;
   
}
.card_logo img{
    width: 64px;
    display: block;
    margin: 0px auto;
    

}
.card_title{
    font-weight: var(--bold-weight);
    font-size: 1.2rem;
    
    
}
.card_button{
    background-color: var(--text-color);
    color:#d5e6f7 ;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 30px;
    padding: 1rem  2rem;
    position: relative;
    margin: 10px 0;  
    display:flex;    
    align-items:flex-end;
    gap: .5rem;
    max-width: max-content;
    z-index: 1;

    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
  }
  .card_button:hover{
    /* margin: 15px 0; */
    transform: translateY(-10px);
  }
