#banner_soldado{
    float:left;
    width:100%;
    background-position: center;
    background-repeat: no-repeat;
    color:#fff;
    margin-top:80px;
    > div{
        padding:120px 0 80px;
    }
    h2{
        font-size:40px;
        font-weight:400;
        margin:0;
    }
    h3{
        font-size:28px;
        font-weight:400;
        margin:0;
    }
    p{
        font-size:18px;
        line-height:1.5;
    }
    .botones{
        display:flex;
        gap:16px;
        justify-content: center;
        > a{
            padding: 12px 32px;
            border-radius:24px;
            text-transform:uppercase;
            background: linear-gradient(135deg, #836902 0%, #bb9d2a 100%);
            transition: background .6s ease, transform .3s ease;
            &:hover{
                background: linear-gradient(270deg, #bb9d2a 0%, #bb9d2a 100%);
                transform: scale(1.05);
            }
        }
    }
    @media (max-width: 800px){
        background-position: -50px center;
        margin-top:0;
        > div{
            padding:120px 0 140px !important;
        }
        h2, h3{
            font-size:26px;
            text-shadow: 0 1px 8px rgba(0,0,0,.8), 0 0px 2px rgba(0,0,0,1);
        }
        p{
            text-shadow: 0 1px 6px rgba(0,0,0,.8);
        }
        .botones{
            flex-direction:column;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 30px;
            a{
                padding:10px 24px;
            }
        }
    }
}