body{
    margin: 0;
    padding: 0;
    font-family: montserrat;
}

.topbar{
    background: #FF8A1A;
    color: white;
    text-align: center;
    padding: 15px 0;
}
.topbar h3{
    max-width: 60%;
    margin: 0 auto;
    font-size: 40px;
}
.banners{
    max-width: 60%;
    width: 60%;
    margin: 0 auto;
}
.banners img{
    width: 100%;
}
.banners h4{
    text-align: center;
    font-weight: 400;
    font-size: 35px;
}
.banners span{
    color: rgb(11, 175, 11);
    font-weight: 700;
}

.list{
    width: 60%;
    max-width: 60%;
    margin: 0 auto;
}
.trusting{
    width: 60%;
    max-width: 60%;
    margin: 0 auto; 
    text-align: center;
}
.trusting img{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.style-title{
    line-height: 37px;
    font-weight: 700;
    text-align: center;
    font-size: 39px;
    color: #000;
    background-image: unset;
    font-family: Montserrat, sans-serif;
}
.style-title span{
    color: white;
    background: #FF8A1A;
}

.list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.list ul li img{
    width: 45px;
}
.list ul li{
    display: flex;
    align-items: center;
}
.list ul li p{
    font-size: 25px;
}

.trusting div{
    background: #de7615;
    padding: 10px;
    color: white;
    font-size: 25px;
    border-radius: 20px;
}
footer{
    background: black;
    padding-top: 20px;
    margin-top: 50px;
}
footer div{
    width: 60%;
    max-width: 60%;
    margin: 0 auto;
}
footer div img{
    width: 100%;
}
footer div p{
    color: white;
    text-align: center;
}

.banners a{
    display: block;
    width: 80%;
    background: #FF8A1A;
    text-align: center;
    margin: 0 auto;
    color: white;
    font-size: 30px;
    text-decoration: none;
    padding: 10px 5px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 2px 2px 10px #FF8A1A;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    
    /* Animación de pulso */
    animation: pulse 2s infinite;
}
.banners a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 138, 26, 0.6);
    background: linear-gradient(45deg, #FF6B47, #FF8A1A);
}
.banners a.scroll-hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 138, 26, 0.6);
    background: linear-gradient(45deg, #FF6B47, #FF8A1A);
}
.banners {
    margin-bottom: 50px;
}

@media (max-width: 600px) {
    .topbar h3{
        font-size: 15px;
        max-width: calc(100% - 15px);
    }
    .banners {
        max-width: calc(100% - 15px);
        width: calc(100% - 15px);
    }
    .banners h4{
        font-size: 25px;
    }
    .banners a{
        font-size: 20px;
    }
    .list{
        max-width: calc(100% - 15px);
        width: calc(100% - 15px);
    }
    .style-title{
        font-size: 24px;
    }
    .trusting{
        max-width: calc(100% - 15px);
        width: calc(100% - 15px);
    }
    .trusting div{
        width: 90%;
        margin: 0 auto;
        font-size: 18px;
    }
    .list ul li p{
        font-size: 18px;
    }
    footer div{
        max-width: calc(100% - 15px);
        width: calc(100% - 15px);
    }
    footer p{
        font-size: 13px;
    }
    footer div img{
        margin-bottom: -5px;
    }
}